comparison src/globals.h @ 17612:e259d11e2900 v8.1.1803

patch 8.1.1803: all builtin functions are global commit https://github.com/vim/vim/commit/ac92e25a33c37ec5becbfffeccda136c73b761ac Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 3 21:58:38 2019 +0200 patch 8.1.1803: all builtin functions are global Problem: All builtin functions are global. Solution: Add the method call operator ->. Implemented for a limited number of functions.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Aug 2019 22:00:07 +0200
parents 3e46860fd4c9
children 83ad219cc133
comparison
equal deleted inserted replaced
17611:b9a3d542a042 17612:e259d11e2900
1590 EXTERN char e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'")); 1590 EXTERN char e_winwidth[] INIT(= N_("E592: 'winwidth' cannot be smaller than 'winminwidth'"));
1591 EXTERN char e_write[] INIT(= N_("E80: Error while writing")); 1591 EXTERN char e_write[] INIT(= N_("E80: Error while writing"));
1592 EXTERN char e_zerocount[] INIT(= N_("E939: Positive count required")); 1592 EXTERN char e_zerocount[] INIT(= N_("E939: Positive count required"));
1593 #ifdef FEAT_EVAL 1593 #ifdef FEAT_EVAL
1594 EXTERN char e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context")); 1594 EXTERN char e_usingsid[] INIT(= N_("E81: Using <SID> not in a script context"));
1595 EXTERN char e_missingparen[] INIT(= N_("E107: Missing parentheses: %s"));
1595 #endif 1596 #endif
1596 #ifdef FEAT_CLIENTSERVER 1597 #ifdef FEAT_CLIENTSERVER
1597 EXTERN char e_invexprmsg[] INIT(= N_("E449: Invalid expression received")); 1598 EXTERN char e_invexprmsg[] INIT(= N_("E449: Invalid expression received"));
1598 #endif 1599 #endif
1599 #ifdef FEAT_NETBEANS_INTG 1600 #ifdef FEAT_NETBEANS_INTG