comparison src/usercmd.c @ 18816:15539899a112 v8.1.2396

patch 8.1.2396: using old C style comments Commit: https://github.com/vim/vim/commit/e38eab22c1fb950127f0307a9904de6d4561dc70 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 5 21:50:01 2019 +0100 patch 8.1.2396: using old C style comments Problem: Using old C style comments. Solution: Use // comments where appropriate.
author Bram Moolenaar <Bram@vim.org>
date Thu, 05 Dec 2019 22:00:04 +0100
parents 506bf60a30a0
children e378907d79bf
comparison
equal deleted inserted replaced
18815:404220424246 18816:15539899a112
390 int len; 390 int len;
391 int over; 391 int over;
392 long a; 392 long a;
393 garray_T *gap; 393 garray_T *gap;
394 394
395 /* In cmdwin, the alternative buffer should be used. */ 395 // In cmdwin, the alternative buffer should be used.
396 gap = 396 gap =
397 #ifdef FEAT_CMDWIN 397 #ifdef FEAT_CMDWIN
398 (cmdwin_type != 0 && get_cmdline_type() == NUL) ? 398 (cmdwin_type != 0 && get_cmdline_type() == NUL) ?
399 &prevwin->w_buffer->b_ucmds : 399 &prevwin->w_buffer->b_ucmds :
400 #endif 400 #endif