mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
vim-patch:8.1.0461: quickfix: change comment style #11453
Problem: Quickfix code uses too many /* */ comments.
Solution: Change to // comments. (Yegappan Lakshmanan)
00bf8cd211
This commit is contained in:

committed by
Justin M. Keyes

parent
f460bae441
commit
8819b5c06e
@@ -1587,7 +1587,7 @@ int rename_buffer(char_u *new_fname)
|
||||
xfname = curbuf->b_fname;
|
||||
curbuf->b_ffname = NULL;
|
||||
curbuf->b_sfname = NULL;
|
||||
if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) {
|
||||
if (setfname(curbuf, new_fname, NULL, true) == FAIL) {
|
||||
curbuf->b_ffname = fname;
|
||||
curbuf->b_sfname = sfname;
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user