summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-05-21 20:17:31 +0100
committerBram Moolenaar <Bram@vim.org>2022-05-21 20:17:31 +0100
commit8e145b82464a21ee4fdf7948f04e2a1d505f8bfa (patch)
tree833d3862b868395323a8670c15af4b30f1d5564e /src/globals.h
parent5a01caa90428a5f87600528d68529383c0b2f78c (diff)
patch 8.2.4993: smart/C/lisp indenting is optionalv8.2.4993
Problem: smart/C/lisp indenting is optional, which makes the code more complex, while it only reduces the executable size a bit. Solution: Graduate FEAT_CINDENT, FEAT_SMARTINDENT and FEAT_LISP.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/globals.h b/src/globals.h
index 52b4c053f0..bf098fdedb 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -937,7 +937,6 @@ EXTERN int end_comment_pending INIT(= NUL);
*/
EXTERN int did_syncbind INIT(= FALSE);
-#ifdef FEAT_SMARTINDENT
/*
* This flag is set when a smart indent has been performed. When the next typed
* character is a '{' the inserted tab will be deleted again.
@@ -955,7 +954,6 @@ EXTERN int can_si INIT(= FALSE);
* one indent will be removed.
*/
EXTERN int can_si_back INIT(= FALSE);
-#endif
EXTERN int old_indent INIT(= 0); // for ^^D command in insert mode