comparison src/evalfunc.c @ 30645:101f08b49ed3 v9.0.0657

patch 9.0.0657: too many #ifdefs Commit: https://github.com/vim/vim/commit/7904fa420eb577274c4c3711295240100167d495 Author: Martin Tournoij <martin@arp242.net> Date: Tue Oct 4 16:28:45 2022 +0100 patch 9.0.0657: too many #ifdefs Problem: Too many #ifdefs. Solution: Graduate the +cmdwin feature. Now the tiny and small builds are equal, drop the small build. (Martin Tournoij, closes #11268)
author Bram Moolenaar <Bram@vim.org>
date Tue, 04 Oct 2022 17:30:06 +0200
parents 56fabd53c7b8
children d914a3812d5b
comparison
equal deleted inserted replaced
30644:0c102a723b9a 30645:101f08b49ed3
5580 0 5580 0
5581 #endif 5581 #endif
5582 }, 5582 },
5583 {"cmdline_compl", 1}, 5583 {"cmdline_compl", 1},
5584 {"cmdline_hist", 1}, 5584 {"cmdline_hist", 1},
5585 {"cmdwin", 5585 {"cmdwin", 1},
5586 #ifdef FEAT_CMDWIN
5587 1
5588 #else
5589 0
5590 #endif
5591 },
5592 {"comments", 1}, 5586 {"comments", 1},
5593 {"conceal", 5587 {"conceal",
5594 #ifdef FEAT_CONCEAL 5588 #ifdef FEAT_CONCEAL
5595 1 5589 1
5596 #else 5590 #else