aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2022-12-16 12:27:49 -0500
committerGitHub <noreply@github.com>2022-12-16 12:27:49 -0500
commit37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe (patch)
tree6dac8769883cac8f0345dd9d3149a629bfb8a2b6 /src/nvim/option.c
parentb55ccb43240c931d1a52a85b02920521a838e0a7 (diff)
parenta5207304dd7cda519ae94b313b9d4fb6dbd298f6 (diff)
downloadrneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.tar.gz
rneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.tar.bz2
rneovim-37915cc5abd5c6f6ae89c1091304c8da2b0fa8fe.zip
Merge #21444 rename mch_msg => os_msg
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 1659de395a..6cc919a1c6 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -1505,11 +1505,11 @@ theend:
if (silent_mode && did_show) {
// After displaying option values in silent mode.
silent_mode = false;
- info_message = true; // use mch_msg(), not mch_errmsg()
+ info_message = true; // use os_msg(), not os_errmsg()
msg_putchar('\n');
ui_flush();
silent_mode = true;
- info_message = false; // use mch_msg(), not mch_errmsg()
+ info_message = false; // use os_msg(), not os_errmsg()
}
return OK;
@@ -3274,7 +3274,7 @@ static void showoneopt(vimoption_T *p, int opt_flags)
int save_silent = silent_mode;
silent_mode = false;
- info_message = true; // use mch_msg(), not mch_errmsg()
+ info_message = true; // use os_msg(), not os_errmsg()
char_u *varp = (char_u *)get_varp_scope(p, opt_flags);