diff options
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index f8fab7028..51dfc1209 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -3490,7 +3490,7 @@ static void do_cmd(int c) | |||
3490 | } while (--cmdcnt > 0); | 3490 | } while (--cmdcnt > 0); |
3491 | break; | 3491 | break; |
3492 | case '{': // {- move backward paragraph | 3492 | case '{': // {- move backward paragraph |
3493 | q = char_search(dot, "\n\n", (BACK << 1) | FULL); | 3493 | q = char_search(dot, "\n\n", ((unsigned)BACK << 1) | FULL); |
3494 | if (q != NULL) { // found blank line | 3494 | if (q != NULL) { // found blank line |
3495 | dot = next_line(q); // move to next blank line | 3495 | dot = next_line(q); // move to next blank line |
3496 | } | 3496 | } |