diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-28 19:05:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-28 19:05:57 +0200 |
commit | 8c96af9c05bfcac2d5ae081e098d4863db561511 (patch) | |
tree | aa01cdaf87cf8050334c8cb20014774623614e73 /src/globals.h | |
parent | a893194d91a2942d4d54085d746ed137a9251b69 (diff) | |
download | vim-git-8c96af9c05bfcac2d5ae081e098d4863db561511.tar.gz |
patch 8.1.2096: too many #ifdefsv8.1.2096
Problem: Too many #ifdefs.
Solution: Graduate FEAT_COMMENTS.
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/globals.h b/src/globals.h index 1dcda8f0b..ac6bd8d81 100644 --- a/src/globals.h +++ b/src/globals.h @@ -800,7 +800,6 @@ EXTERN int did_ai INIT(= FALSE); */ EXTERN colnr_T ai_col INIT(= 0); -#ifdef FEAT_COMMENTS /* * This is a character which will end a start-middle-end comment when typed as * the first character on a new line. It is taken from the last character of @@ -808,7 +807,6 @@ EXTERN colnr_T ai_col INIT(= 0); * comment end in 'comments'. It is only valid when did_ai is TRUE. */ EXTERN int end_comment_pending INIT(= NUL); -#endif /* * This flag is set after a ":syncbind" to let the check_scrollbind() function |