comparison src/version.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 b02044bc8c20
children f498ab5c82ea
comparison
equal deleted inserted replaced
28941:f17de8647585 28942:6cdf55afaae9
150 #ifdef FEAT_JOB_CHANNEL 150 #ifdef FEAT_JOB_CHANNEL
151 "+channel", 151 "+channel",
152 #else 152 #else
153 "-channel", 153 "-channel",
154 #endif 154 #endif
155 #ifdef FEAT_CINDENT
156 "+cindent", 155 "+cindent",
157 #else
158 "-cindent",
159 #endif
160 #ifdef FEAT_CLIENTSERVER 156 #ifdef FEAT_CLIENTSERVER
161 "+clientserver", 157 "+clientserver",
162 #else 158 #else
163 "-clientserver", 159 "-clientserver",
164 #endif 160 #endif
332 #ifdef FEAT_LINEBREAK 328 #ifdef FEAT_LINEBREAK
333 "+linebreak", 329 "+linebreak",
334 #else 330 #else
335 "-linebreak", 331 "-linebreak",
336 #endif 332 #endif
337 #ifdef FEAT_LISP
338 "+lispindent", 333 "+lispindent",
339 #else
340 "-lispindent",
341 #endif
342 "+listcmds", 334 "+listcmds",
343 "+localmap", 335 "+localmap",
344 #ifdef FEAT_LUA 336 #ifdef FEAT_LUA
345 # ifdef DYNAMIC_LUA 337 # ifdef DYNAMIC_LUA
346 "+lua/dyn", 338 "+lua/dyn",
544 #ifdef FEAT_SIGNS 536 #ifdef FEAT_SIGNS
545 "+signs", 537 "+signs",
546 #else 538 #else
547 "-signs", 539 "-signs",
548 #endif 540 #endif
549 #ifdef FEAT_SMARTINDENT
550 "+smartindent", 541 "+smartindent",
551 #else
552 "-smartindent",
553 #endif
554 #ifdef FEAT_SODIUM 542 #ifdef FEAT_SODIUM
555 # ifdef DYNAMIC_SODIUM 543 # ifdef DYNAMIC_SODIUM
556 "+sodium/dyn", 544 "+sodium/dyn",
557 # else 545 # else
558 "+sodium", 546 "+sodium",
744 NULL 732 NULL
745 }; 733 };
746 734
747 static int included_patches[] = 735 static int included_patches[] =
748 { /* Add new patch number below this line */ 736 { /* Add new patch number below this line */
737 /**/
738 4993,
749 /**/ 739 /**/
750 4992, 740 4992,
751 /**/ 741 /**/
752 4991, 742 4991,
753 /**/ 743 /**/