mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -04:00
patch 8.0.1688: some macros are used without a semicolon
Problem: Some macros are used without a semicolon, causing auto-indent to be wrong. Solution: Use the do-while(0) trick. (Ozaki Kiichi, closes #2729)
This commit is contained in:
@@ -2996,7 +2996,7 @@ rename_buffer(char_u *new_fname)
|
||||
apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
|
||||
|
||||
/* Change directories when the 'acd' option is set. */
|
||||
DO_AUTOCHDIR
|
||||
DO_AUTOCHDIR;
|
||||
return OK;
|
||||
}
|
||||
|
||||
@@ -3254,7 +3254,7 @@ do_write(exarg_T *eap)
|
||||
* got changed or set. */
|
||||
if (eap->cmdidx == CMD_saveas || name_was_missing)
|
||||
{
|
||||
DO_AUTOCHDIR
|
||||
DO_AUTOCHDIR;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4147,7 +4147,7 @@ do_ecmd(
|
||||
#endif
|
||||
|
||||
/* Change directories when the 'acd' option is set. */
|
||||
DO_AUTOCHDIR
|
||||
DO_AUTOCHDIR;
|
||||
|
||||
/*
|
||||
* Careful: open_buffer() and apply_autocmds() may change the current
|
||||
|
Reference in New Issue
Block a user