diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-09-27 21:46:39 +0200 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2023-09-27 21:46:39 +0200 |
commit | f91cd31d7d9d70006e0000592637d5d997eab52c (patch) | |
tree | d0b982c4348583040359ed440414252b5f174589 /src/nvim/option.c | |
parent | 26d6f030231831ad9804f195155111aaf375340a (diff) | |
download | rneovim-f91cd31d7d9d70006e0000592637d5d997eab52c.tar.gz rneovim-f91cd31d7d9d70006e0000592637d5d997eab52c.tar.bz2 rneovim-f91cd31d7d9d70006e0000592637d5d997eab52c.zip |
refactor(messages): fold msg_outtrans_attr into msg_outtrans
problem: there are too many different functions in message.c
solution: fold some of the functions into themselves
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index c34999ed32..804adfe537 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -4058,7 +4058,7 @@ static void showoneopt(vimoption_T *p, int opt_flags) msg_putchar('='); // put value string in NameBuff option_value2string(p, opt_flags); - msg_outtrans(NameBuff); + msg_outtrans(NameBuff, 0); } silent_mode = save_silent; |