summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-03 21:58:38 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-03 21:58:38 +0200
commitac92e25a33c37ec5becbfffeccda136c73b761ac (patch)
tree64f77cc6dd9427536fd113451b1878490b5298db /src/globals.h
parentb2129068a55261bea1e293a6a1ce8491a03e7de6 (diff)
patch 8.1.1803: all builtin functions are globalv8.1.1803
Problem: All builtin functions are global. Solution: Add the method call operator ->. Implemented for a limited number of functions.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 2d646865bb..6faee3bb29 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1592,6 +1592,7 @@ EXTERN char e_write[] INIT(= N_("E80: Error while writing"));
EXTERN char e_zerocount[] INIT(= N_("E939: Positive count required"));
#ifdef FEAT_EVAL
EXTERN char e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context"));
+EXTERN char e_missingparen[] INIT(= N_("E107: Missing parentheses: %s"));
#endif
#ifdef FEAT_CLIENTSERVER
EXTERN char e_invexprmsg[] INIT(= N_("E449: Invalid expression received"));