comparison src/globals.h @ 20649:1fa0ace0ba65 v8.2.0878

patch 8.2.0878: no reduce() function Commit: https://github.com/vim/vim/commit/85629985b71035608a37ba3bde86968481490d46 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 18:39:20 2020 +0200 patch 8.2.0878: no reduce() function Problem: No reduce() function. Solution: Add a reduce() function. (closes https://github.com/vim/vim/issues/5481)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 18:45:03 +0200
parents 68c206d3a251
children 90b96fa35e4b
comparison
equal deleted inserted replaced
20648:78db823f74d0 20649:1fa0ace0ba65
1688 EXTERN char e_modulus[] INIT(= N_("E804: Cannot use '%' with Float")); 1688 EXTERN char e_modulus[] INIT(= N_("E804: Cannot use '%' with Float"));
1689 EXTERN char e_inval_string[] INIT(= N_("E908: using an invalid value as a String")); 1689 EXTERN char e_inval_string[] INIT(= N_("E908: using an invalid value as a String"));
1690 EXTERN char e_const_option[] INIT(= N_("E996: Cannot lock an option")); 1690 EXTERN char e_const_option[] INIT(= N_("E996: Cannot lock an option"));
1691 EXTERN char e_unknown_option[] INIT(= N_("E113: Unknown option: %s")); 1691 EXTERN char e_unknown_option[] INIT(= N_("E113: Unknown option: %s"));
1692 EXTERN char e_letunexp[] INIT(= N_("E18: Unexpected characters in :let")); 1692 EXTERN char e_letunexp[] INIT(= N_("E18: Unexpected characters in :let"));
1693 EXTERN char e_reduceempty[] INIT(= N_("E998: Reduce of an empty %s with no initial value"));
1693 #endif 1694 #endif
1694 #ifdef FEAT_QUICKFIX 1695 #ifdef FEAT_QUICKFIX
1695 EXTERN char e_readerrf[] INIT(= N_("E47: Error while reading errorfile")); 1696 EXTERN char e_readerrf[] INIT(= N_("E47: Error while reading errorfile"));
1696 #endif 1697 #endif
1697 #ifdef HAVE_SANDBOX 1698 #ifdef HAVE_SANDBOX