aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 83b06e2f6d..c22d344878 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -1402,8 +1402,8 @@ int find_tags(char_u *pat, int *num_matches, char_u ***matchesp, int flags, int
int round;
enum {
TS_START, // at start of file
- TS_LINEAR // linear searching forward, till EOF
- , TS_BINARY, // binary searching
+ TS_LINEAR, // linear searching forward, till EOF
+ TS_BINARY, // binary searching
TS_SKIP_BACK, // skipping backwards
TS_STEP_FORWARD // stepping forwards
} state; // Current search state