summaryrefslogtreecommitdiff
path: root/src/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/macros.h b/src/macros.h
index 43d6c94cf..f5440b17e 100644
--- a/src/macros.h
+++ b/src/macros.h
@@ -294,19 +294,7 @@
# define DO_AUTOCHDIR
#endif
-#if defined(FEAT_SCROLLBIND) && defined(FEAT_CURSORBIND)
-# define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE
-#else
-# if defined(FEAT_SCROLLBIND)
-# define RESET_BINDING(wp) (wp)->w_p_scb = FALSE
-# else
-# if defined(FEAT_CURSORBIND)
-# define RESET_BINDING(wp) (wp)->w_p_crb = FALSE
-# else
-# define RESET_BINDING(wp)
-# endif
-# endif
-#endif
+#define RESET_BINDING(wp) (wp)->w_p_scb = FALSE; (wp)->w_p_crb = FALSE
#ifdef FEAT_DIFF
# define PLINES_NOFILL(x) plines_nofill(x)