diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-16 10:59:11 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-19 15:03:07 +0100 |
commit | 1798a4b5e9f0ae56cd800095f79423fea5cae8ca (patch) | |
tree | d7292e2164461bee8638dfb9b37174052e0f5a01 /src/nvim/fileio.c | |
parent | de28a0f84c577e264f37cd001b03d640db7d5ef9 (diff) | |
download | rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.tar.gz rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.tar.bz2 rneovim-1798a4b5e9f0ae56cd800095f79423fea5cae8ca.zip |
build: bump uncrustify version
Biggest change is that uncrustify is silent during linting.
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index e89bb41745..b68399e428 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -2973,8 +2973,8 @@ int buf_check_timestamp(buf_T *buf) // checked out of CVS). Always warn when the buffer was // changed. if (reason[2] == 'n') { - mesg = _( - "W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well"); + mesg = + _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well"); mesg2 = _("See \":help W12\" for more info."); } else if (reason[1] == 'h') { mesg = _("W11: Warning: File \"%s\" has changed since editing started"); |