comparison src/feature.h @ 13412:58a1104c343e v8.0.1580

patch 8.0.1580: FEAT_CURSORBIND and FEAT_SCROLLBIND are unused commit https://github.com/vim/vim/commit/946acdac5b4e334f816e78f7876bde9d97b3d96a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 6 15:06:19 2018 +0100 patch 8.0.1580: FEAT_CURSORBIND and FEAT_SCROLLBIND are unused Problem: FEAT_CURSORBIND and FEAT_SCROLLBIND are unused. Solution: Delete them.
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Mar 2018 15:15:06 +0100
parents 69517d67421f
children e534e8b21fd7
comparison
equal deleted inserted replaced
13411:d5553ef31db5 13412:58a1104c343e
691 # define USE_DLOPEN 691 # define USE_DLOPEN
692 #endif 692 #endif
693 #if defined(FEAT_EVAL) && (defined(WIN3264) || ((defined(UNIX) || defined(VMS)) \ 693 #if defined(FEAT_EVAL) && (defined(WIN3264) || ((defined(UNIX) || defined(VMS)) \
694 && (defined(USE_DLOPEN) || defined(HAVE_SHL_LOAD)))) 694 && (defined(USE_DLOPEN) || defined(HAVE_SHL_LOAD))))
695 # define FEAT_LIBCALL 695 # define FEAT_LIBCALL
696 #endif
697
698 /*
699 * +scrollbind synchronization of split windows
700 */
701 #if defined(FEAT_NORMAL)
702 # define FEAT_SCROLLBIND
703 #endif
704
705 /*
706 * +cursorbind synchronization of split windows
707 */
708 #if defined(FEAT_NORMAL)
709 # define FEAT_CURSORBIND
710 #endif 696 #endif
711 697
712 /* 698 /*
713 * +menu ":menu" command 699 * +menu ":menu" command
714 */ 700 */