aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/vi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 4676db2b2..948b95ae6 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -3556,7 +3556,7 @@ static void do_cmd(int c)
3556 } while (--cmdcnt > 0); 3556 } while (--cmdcnt > 0);
3557 break; 3557 break;
3558 case '{': // {- move backward paragraph 3558 case '{': // {- move backward paragraph
3559 q = char_search(dot, "\n\n", (BACK << 1) | FULL); 3559 q = char_search(dot, "\n\n", ((unsigned)BACK << 1) | FULL);
3560 if (q != NULL) { // found blank line 3560 if (q != NULL) { // found blank line
3561 dot = next_line(q); // move to next blank line 3561 dot = next_line(q); // move to next blank line
3562 } 3562 }