diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-07 21:51:04 -0700 |
|---|---|---|
| committer | Justin M. Keyes <justinkz@gmail.com> | 2019-10-07 21:51:04 -0700 |
| commit | 3b3a40978117a79cd6960c820b12e6f04408ac25 (patch) | |
| tree | 347bf4fa16579a0d78314589babd405b520f68a3 /src/nvim/fileio.c | |
| parent | 7faa6c41c89f1c5d48f92a436ed690bc7ce6ea85 (diff) | |
| parent | 0586a4b512b2495d32f20c46946d35a0d403bd52 (diff) | |
| download | rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.gz rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.bz2 rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.zip | |
Merge #11077 'vim-patch:8.1.{1354,1356,1362,1588}'
Diffstat (limited to 'src/nvim/fileio.c')
| -rw-r--r-- | src/nvim/fileio.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 0394639a16..58e6b2ae92 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -7100,12 +7100,10 @@ auto_next_pat( } } -/* - * Get next autocommand command. - * Called by do_cmdline() to get the next line for ":if". - * Returns allocated string, or NULL for end of autocommands. - */ -char_u *getnextac(int c, void *cookie, int indent) +/// Get next autocommand command. +/// Called by do_cmdline() to get the next line for ":if". +/// @return allocated string, or NULL for end of autocommands. +char_u *getnextac(int c, void *cookie, int indent, bool do_concat) { AutoPatCmd *acp = (AutoPatCmd *)cookie; char_u *retval; |