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/cmdhist.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/cmdhist.c')
-rw-r--r-- | src/nvim/cmdhist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/cmdhist.c b/src/nvim/cmdhist.c index 072898706b..96d2710001 100644 --- a/src/nvim/cmdhist.c +++ b/src/nvim/cmdhist.c @@ -672,7 +672,7 @@ void ex_history(exarg_T *eap) } else { xstrlcat(IObuff, hist[i].hisstr, IOSIZE); } - msg_outtrans(IObuff); + msg_outtrans(IObuff, 0); } if (i == idx) { break; |