diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-09-06 16:23:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 07:23:00 -0700 |
commit | 12afc344deb2df3973904fe55813d700da985dbf (patch) | |
tree | d60d9da9563eabe9ea30a17e20f9c8dc21e4f495 /src/nvim/strings.c | |
parent | 84d1094958fdbdda67f629197924d4146e2a1887 (diff) | |
download | rneovim-12afc344deb2df3973904fe55813d700da985dbf.tar.gz rneovim-12afc344deb2df3973904fe55813d700da985dbf.tar.bz2 rneovim-12afc344deb2df3973904fe55813d700da985dbf.zip |
refactor: migrate comment style 2 #20080
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r-- | src/nvim/strings.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index 12bfa35dd6..d7a0472cbf 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -180,10 +180,10 @@ char_u *vim_strsave_shellescape(const char_u *string, bool do_special, bool do_n int csh_like; bool fish_like; - /* Only csh and similar shells expand '!' within single quotes. For sh and - * the like we must not put a backslash before it, it will be taken - * literally. If do_special is set the '!' will be escaped twice. - * Csh also needs to have "\n" escaped twice when do_special is set. */ + // Only csh and similar shells expand '!' within single quotes. For sh and + // the like we must not put a backslash before it, it will be taken + // literally. If do_special is set the '!' will be escaped twice. + // Csh also needs to have "\n" escaped twice when do_special is set. csh_like = csh_like_shell(); // Fish shell uses '\' as an escape character within single quotes, so '\' |