comparison src/netbeans.c @ 11653:67cf0d45b006 v8.0.0709

patch 8.0.0709: libvterm cannot use vsnprintf() commit https://github.com/vim/vim/commit/8327d1df1754b33d8a93b3411f30692f0042f4ce Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 11 22:34:51 2017 +0200 patch 8.0.0709: libvterm cannot use vsnprintf() Problem: Libvterm cannot use vsnprintf(), it does not exist in C90. Solution: Use vim_vsnprintf() instead.
author Christian Brabandt <cb@256bit.org>
date Tue, 11 Jul 2017 22:45:03 +0200
parents 8cff35d5f5dc
children 68d7bc045dbe
comparison
equal deleted inserted replaced
11652:8263fcf185e3 11653:67cf0d45b006
2299 { 2299 {
2300 char buf[1024]; 2300 char buf[1024];
2301 va_list ap; 2301 va_list ap;
2302 2302
2303 va_start(ap, cmd); 2303 va_start(ap, cmd);
2304 vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); 2304 vim_vsnprintf(buf, sizeof(buf), cmd, ap);
2305 va_end(ap); 2305 va_end(ap);
2306 2306
2307 nbdebug((" COLONCMD %s\n", buf)); 2307 nbdebug((" COLONCMD %s\n", buf));
2308 2308
2309 /* ALT_INPUT_LOCK_ON; */ 2309 /* ALT_INPUT_LOCK_ON; */