comparison src/evalfunc.c @ 28942:6cdf55afaae9 v8.2.4993

patch 8.2.4993: smart/C/lisp indenting is optional Commit: https://github.com/vim/vim/commit/8e145b82464a21ee4fdf7948f04e2a1d505f8bfa Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 21 20:17:31 2022 +0100 patch 8.2.4993: smart/C/lisp indenting is optional 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.
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 May 2022 21:30:04 +0200
parents c5862dfaf0bd
children 644b0f0541de
comparison
equal deleted inserted replaced
28941:f17de8647585 28942:6cdf55afaae9
5474 1 5474 1
5475 #else 5475 #else
5476 0 5476 0
5477 #endif 5477 #endif
5478 }, 5478 },
5479 {"cindent", 5479 {"cindent", 1},
5480 #ifdef FEAT_CINDENT
5481 1
5482 #else
5483 0
5484 #endif
5485 },
5486 {"clientserver", 5480 {"clientserver",
5487 #ifdef FEAT_CLIENTSERVER 5481 #ifdef FEAT_CLIENTSERVER
5488 1 5482 1
5489 #else 5483 #else
5490 0 5484 0
5794 1 5788 1
5795 #else 5789 #else
5796 0 5790 0
5797 #endif 5791 #endif
5798 }, 5792 },
5799 {"lispindent", 5793 {"lispindent", 1},
5800 #ifdef FEAT_LISP
5801 1
5802 #else
5803 0
5804 #endif
5805 },
5806 {"listcmds", 1}, 5794 {"listcmds", 1},
5807 {"localmap", 1}, 5795 {"localmap", 1},
5808 {"lua", 5796 {"lua",
5809 #if defined(FEAT_LUA) && !defined(DYNAMIC_LUA) 5797 #if defined(FEAT_LUA) && !defined(DYNAMIC_LUA)
5810 1 5798 1
6089 1 6077 1
6090 #else 6078 #else
6091 0 6079 0
6092 #endif 6080 #endif
6093 }, 6081 },
6094 {"smartindent", 6082 {"smartindent", 1},
6095 #ifdef FEAT_SMARTINDENT
6096 1
6097 #else
6098 0
6099 #endif
6100 },
6101 {"startuptime", 6083 {"startuptime",
6102 #ifdef STARTUPTIME 6084 #ifdef STARTUPTIME
6103 1 6085 1
6104 #else 6086 #else
6105 0 6087 0