aboutsummaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-01-08 12:30:49 +0000
committerRon Yorston <rmy@pobox.com>2020-01-08 12:30:49 +0000
commita9271a8e97e6e7be5285330d5f19352decabf807 (patch)
treebf3c4464c369a15a46454792dac167505f74769f /editors/vi.c
parentb0b7ab792bc1f45963f4b84b94faaf05054e1613 (diff)
parent9ec836c033fc6e55e80f3309b3e05acdf09bb297 (diff)
downloadbusybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.tar.gz
busybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.tar.bz2
busybox-w32-a9271a8e97e6e7be5285330d5f19352decabf807.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'editors/vi.c')
-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 }