diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-07-06 13:31:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-07-06 13:31:28 +0100 |
commit | b8329db36a886355e6e9cb9986a3668fef78c438 (patch) | |
tree | 33ffb8b90e8cd13707eadfe3848c30a09d06c8fc /src/textformat.c | |
parent | 5ed11535e0695163cec71033b98bb97356cf0113 (diff) | |
download | vim-git-b8329db36a886355e6e9cb9986a3668fef78c438.tar.gz |
patch 9.0.0044: typos in comments, wrapping linesv9.0.0044
Problem: Typos in comments, wrapping lines.
Solution: Adjust comments. Wrap lines.
Diffstat (limited to 'src/textformat.c')
-rw-r--r-- | src/textformat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textformat.c b/src/textformat.c index 5ba2f1798..f34c99848 100644 --- a/src/textformat.c +++ b/src/textformat.c @@ -92,7 +92,7 @@ internal_format( int did_do_comment = FALSE; virtcol = get_nolist_virtcol() - + char2cells(c != NUL ? c : gchar_cursor()); + + char2cells(c != NUL ? c : gchar_cursor()); if (virtcol <= (colnr_T)textwidth) break; |