comparison src/evalfunc.c @ 13367:53f15c99a9fd v8.0.1557

patch 8.0.1557: printf() does not work with only one argument commit https://github.com/vim/vim/commit/c71807db9c1821baf86796cd76952df36ff1a29a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 3 15:06:52 2018 +0100 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 https://github.com/vim/vim/issues/2687)
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Mar 2018 15:15:05 +0100
parents 65c3e8259124
children 0f9dd1b43244
comparison
equal deleted inserted replaced
13366:00577b3b9aae 13367:53f15c99a9fd
736 #endif 736 #endif
737 #ifdef FEAT_FLOAT 737 #ifdef FEAT_FLOAT
738 {"pow", 2, 2, f_pow}, 738 {"pow", 2, 2, f_pow},
739 #endif 739 #endif
740 {"prevnonblank", 1, 1, f_prevnonblank}, 740 {"prevnonblank", 1, 1, f_prevnonblank},
741 {"printf", 2, 19, f_printf}, 741 {"printf", 1, 19, f_printf},
742 {"pumvisible", 0, 0, f_pumvisible}, 742 {"pumvisible", 0, 0, f_pumvisible},
743 #ifdef FEAT_PYTHON3 743 #ifdef FEAT_PYTHON3
744 {"py3eval", 1, 1, f_py3eval}, 744 {"py3eval", 1, 1, f_py3eval},
745 #endif 745 #endif
746 #ifdef FEAT_PYTHON 746 #ifdef FEAT_PYTHON