comparison src/globals.h @ 32775:2d5e8c46508b v9.0.1704

patch 9.0.1704: Cannot use positional arguments for printf() Commit: https://github.com/vim/vim/commit/0c6181fec4c362eb9682d5af583341eb20cb1af5 Author: Christ van Willegen <cvwillegen@gmail.com> Date: Sun Aug 13 18:03:14 2023 +0200 patch 9.0.1704: Cannot use positional arguments for printf() Problem: Cannot use positional arguments for printf() Solution: Support positional arguments in string formatting closes: #12140 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Christ van Willegen <cvwillegen@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Sun, 13 Aug 2023 18:15:04 +0200
parents 695b50472e85
children 22a08166a876
comparison
equal deleted inserted replaced
32774:1b2730ece70e 32775:2d5e8c46508b
1672 EXTERN int cmdwin_type INIT(= 0); // type of cmdline window or 0 1672 EXTERN int cmdwin_type INIT(= 0); // type of cmdline window or 0
1673 EXTERN int cmdwin_result INIT(= 0); // result of cmdline window or 0 1673 EXTERN int cmdwin_result INIT(= 0); // result of cmdline window or 0
1674 1674
1675 EXTERN char_u no_lines_msg[] INIT(= N_("--No lines in buffer--")); 1675 EXTERN char_u no_lines_msg[] INIT(= N_("--No lines in buffer--"));
1676 1676
1677 EXTERN char typename_unknown[] INIT(= N_("unknown"));
1678 EXTERN char typename_int[] INIT(= N_("int"));
1679 EXTERN char typename_longint[] INIT(= N_("long int"));
1680 EXTERN char typename_longlongint[] INIT(= N_("long long int"));
1681 EXTERN char typename_unsignedint[] INIT(= N_("unsigned int"));
1682 EXTERN char typename_unsignedlongint[] INIT(= N_("unsigned long int"));
1683 EXTERN char typename_unsignedlonglongint[] INIT(= N_("unsigned long long int"));
1684 EXTERN char typename_pointer[] INIT(= N_("pointer"));
1685 EXTERN char typename_percent[] INIT(= N_("percent"));
1686 EXTERN char typename_char[] INIT(= N_("char"));
1687 EXTERN char typename_string[] INIT(= N_("string"));
1688 EXTERN char typename_float[] INIT(= N_("float"));
1689
1677 /* 1690 /*
1678 * When ":global" is used to number of substitutions and changed lines is 1691 * When ":global" is used to number of substitutions and changed lines is
1679 * accumulated until it's finished. 1692 * accumulated until it's finished.
1680 * Also used for ":spellrepall". 1693 * Also used for ":spellrepall".
1681 */ 1694 */