aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/regexp_defs.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-04-27 14:27:55 +0200
committerGitHub <noreply@github.com>2019-04-27 14:27:55 +0200
commite5b53381a27861578498dab3ab9ba7b989677787 (patch)
treeb8cd55c7d9010aed7627dc85918d2b21efdc5d31 /src/nvim/regexp_defs.h
parent9d77a0768697aced470c72ba71d0e04cf45f0fd0 (diff)
parent16cc3cf9eb7e9b2caefc77311fb3e14743102418 (diff)
downloadrneovim-e5b53381a27861578498dab3ab9ba7b989677787.tar.gz
rneovim-e5b53381a27861578498dab3ab9ba7b989677787.tar.bz2
rneovim-e5b53381a27861578498dab3ab9ba7b989677787.zip
Merge #9942 from janlazo/vim-8.1.0837
vim-patch:8.1.{837,1180,1194,1203,1207,1209}
Diffstat (limited to 'src/nvim/regexp_defs.h')
-rw-r--r--src/nvim/regexp_defs.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/regexp_defs.h b/src/nvim/regexp_defs.h
index 298d82fc6b..5e5b19b63f 100644
--- a/src/nvim/regexp_defs.h
+++ b/src/nvim/regexp_defs.h
@@ -94,10 +94,8 @@ typedef struct {
char_u program[1]; /* actually longer.. */
} bt_regprog_T;
-/*
- * Structure representing a NFA state.
- * A NFA state may have no outgoing edge, when it is a NFA_MATCH state.
- */
+// Structure representing a NFA state.
+// An NFA state may have no outgoing edge, when it is a NFA_MATCH state.
typedef struct nfa_state nfa_state_T;
struct nfa_state {
int c;