Commit 314be2cf authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

formatting fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2287 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 21954765
Showing with 2 additions and 4 deletions
+2 -4
......@@ -1334,8 +1334,7 @@ void do_next_word(void)
/* Move forward until we find the character after the last letter of
* the current word. */
while (current->data[current_x] != '\0') {
char_mb_len = parse_mbchar(current->data + current_x,
char_mb
char_mb_len = parse_mbchar(current->data + current_x, char_mb
#ifdef NANO_WIDE
, NULL
#endif
......@@ -1405,8 +1404,7 @@ void do_prev_word(void)
/* Move backward until we find the character before the first letter
* of the current word. */
while (!begin_line) {
char_mb_len = parse_mbchar(current->data + current_x,
char_mb
char_mb_len = parse_mbchar(current->data + current_x, char_mb
#ifdef NANO_WIDE
, NULL
#endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment