mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.0.1557: printf() does not work with only one argument
Problem: printf() does not work with only one argument. (Daniel Hahler) Solution: Allow using just the format. (Ken Takata, closes #2687)
This commit is contained in:
@@ -738,7 +738,7 @@ static struct fst
|
|||||||
{"pow", 2, 2, f_pow},
|
{"pow", 2, 2, f_pow},
|
||||||
#endif
|
#endif
|
||||||
{"prevnonblank", 1, 1, f_prevnonblank},
|
{"prevnonblank", 1, 1, f_prevnonblank},
|
||||||
{"printf", 2, 19, f_printf},
|
{"printf", 1, 19, f_printf},
|
||||||
{"pumvisible", 0, 0, f_pumvisible},
|
{"pumvisible", 0, 0, f_pumvisible},
|
||||||
#ifdef FEAT_PYTHON3
|
#ifdef FEAT_PYTHON3
|
||||||
{"py3eval", 1, 1, f_py3eval},
|
{"py3eval", 1, 1, f_py3eval},
|
||||||
|
@@ -131,6 +131,9 @@ func Test_option_value()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
function Test_printf_misc()
|
function Test_printf_misc()
|
||||||
|
call assert_equal('123', printf('123'))
|
||||||
|
call assert_fails("call printf('123', 3)", "E767:")
|
||||||
|
|
||||||
call assert_equal('123', printf('%d', 123))
|
call assert_equal('123', printf('%d', 123))
|
||||||
call assert_equal('123', printf('%i', 123))
|
call assert_equal('123', printf('%i', 123))
|
||||||
call assert_equal('123', printf('%D', 123))
|
call assert_equal('123', printf('%D', 123))
|
||||||
|
@@ -778,6 +778,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1557,
|
||||||
/**/
|
/**/
|
||||||
1556,
|
1556,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user