diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ex_getln.c | 6 | ||||
-rw-r--r-- | src/proto.h | 4 | ||||
-rw-r--r-- | src/version.c | 1 |
3 files changed, 2 insertions, 9 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index 94daa3d4e6..498d53904c 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -1615,11 +1615,9 @@ getcmdline_prompt ( /* * Return TRUE when the text must not be changed and we can't switch to - * another window or buffer. Used when editing the command line, evaluating - * 'balloonexpr', etc. + * another window or buffer. Used when editing the command line etc. */ -int text_locked(void) -{ +int text_locked(void) { if (cmdwin_type != 0) return TRUE; return textlock != 0; diff --git a/src/proto.h b/src/proto.h index 8089d3c02b..a2acc5a05f 100644 --- a/src/proto.h +++ b/src/proto.h @@ -42,8 +42,4 @@ vim_snprintf(char *, size_t, char *, ...); int vim_vsnprintf(char *str, size_t str_m, char *fmt, va_list ap, typval_T *tvs); -/* Ugly solution for "BalloonEval" not being defined while it's used in some - * .pro files. */ -# define BalloonEval int - #endif /* !PROTO && !NOPROTO */ diff --git a/src/version.c b/src/version.c index da6e05e9ec..c519bba0dd 100644 --- a/src/version.c +++ b/src/version.c @@ -36,7 +36,6 @@ static char *(features[]) = { #endif // ifdef HAVE_ACL "+arabic", "+autocmd", - "-balloon_eval", "-browse", #ifdef NO_BUILTIN_TCAPS "-builtin_terms", |