diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-29 20:07:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-29 20:07:16 +0200 |
commit | be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77 (patch) | |
tree | 33ffeaee48b3895c0cca615476a027a27c780cfc /src/nvim/os | |
parent | 54daf022ce989bb8ea34084f947ab85c045b690f (diff) | |
parent | bc13bc154aa574e0bb58a50f2e0ca4570efa57c3 (diff) | |
download | rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.gz rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.tar.bz2 rneovim-be463e7643fb65c49a9a13bd5a1c6fb6ac34ae77.zip |
Merge pull request #25418 from bfredl/no_attr2
refactor(message): remove more "attr" variants
Diffstat (limited to 'src/nvim/os')
-rw-r--r-- | src/nvim/os/fs.c | 2 | ||||
-rw-r--r-- | src/nvim/os/lang.c | 2 | ||||
-rw-r--r-- | src/nvim/os/shell.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 6c3eca8961..c95b5defaa 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -76,7 +76,7 @@ int os_chdir(const char *path) { if (p_verbose >= 5) { verbose_enter(); - smsg("chdir(%s)", path); + smsg(0, "chdir(%s)", path); verbose_leave(); } return uv_chdir(path); diff --git a/src/nvim/os/lang.c b/src/nvim/os/lang.c index 8ca2aa3a4b..652b851903 100644 --- a/src/nvim/os/lang.c +++ b/src/nvim/os/lang.c @@ -197,7 +197,7 @@ void ex_language(exarg_T *eap) if (p == NULL || *p == NUL) { p = "Unknown"; } - smsg(_("Current %slanguage: \"%s\""), whatstr, p); + smsg(0, _("Current %slanguage: \"%s\""), whatstr, p); } else { # ifndef LC_MESSAGES if (what == VIM_LC_MESSAGES) { diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 582135349f..9b7b013edf 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -732,7 +732,7 @@ int call_shell(char *cmd, ShellOpts opts, char *extra_shell_arg) if (p_verbose > 3) { verbose_enter(); - smsg(_("Executing command: \"%s\""), cmd == NULL ? p_sh : cmd); + smsg(0, _("Executing command: \"%s\""), cmd == NULL ? p_sh : cmd); msg_putchar('\n'); verbose_leave(); } |