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/sign.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/sign.c')
-rw-r--r-- | src/nvim/sign.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/sign.c b/src/nvim/sign.c index 1910e046e6..e30dffa294 100644 --- a/src/nvim/sign.c +++ b/src/nvim/sign.c @@ -1663,12 +1663,12 @@ static void sign_list_defined(sign_T *sp) smsg("sign %s", sp->sn_name); if (sp->sn_icon != NULL) { msg_puts(" icon="); - msg_outtrans(sp->sn_icon); + msg_outtrans(sp->sn_icon, 0); msg_puts(_(" (not supported)")); } if (sp->sn_text != NULL) { msg_puts(" text="); - msg_outtrans(sp->sn_text); + msg_outtrans(sp->sn_text, 0); } if (sp->sn_line_hl > 0) { msg_puts(" linehl="); |