diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-06-13 04:33:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-13 04:33:30 -0400 |
commit | 28cc5a06462090a0411201b2c44140c37a433a0f (patch) | |
tree | 3d198c60f3f2021a5db89faa61c8ea7fa33e70f7 /src/nvim/ex_cmds2.c | |
parent | 0ea01c15861eb6952b5db45f6a6b6ef507954e5b (diff) | |
parent | c4da27095ccce52f9e2e7e0d80b5c1475c1fd66d (diff) | |
download | rneovim-28cc5a06462090a0411201b2c44140c37a433a0f.tar.gz rneovim-28cc5a06462090a0411201b2c44140c37a433a0f.tar.bz2 rneovim-28cc5a06462090a0411201b2c44140c37a433a0f.zip |
Merge #3745 from cacplate/ops_Wconversion
Enable -Wconversion in ops.c
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index df4a6d52c4..247f86679f 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -2010,9 +2010,7 @@ void ex_argdelete(exarg_T *eap) maketitle(); } -/* - * ":argdo", ":windo", ":bufdo", ":tabdo", ":cdo", ":ldo", ":cfdo" and ":lfdo" - */ +/// ":argdo", ":windo", ":bufdo", ":tabdo", ":cdo", ":ldo", ":cfdo" and ":lfdo" void ex_listdo(exarg_T *eap) { int i; @@ -2060,9 +2058,9 @@ void ex_listdo(exarg_T *eap) buf_T *buf = curbuf; size_t qf_size = 0; - /* set pcmark now */ + // set pcmark now if (eap->cmdidx == CMD_bufdo) { - /* Advance to the first listed buffer after "eap->line1". */ + // Advance to the first listed buffer after "eap->line1". for (buf = firstbuf; buf != NULL && (buf->b_fnum < eap->line1 || !buf->b_p_bl); buf = buf->b_next) { |