aboutsummaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
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 22bd2fffa..65fb0265e 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -1718,7 +1718,7 @@ static int find_range(char ** start, char ** stop, char c)
1718 p = t; 1718 p = t;
1719 } 1719 }
1720 1720
1721 // backward char movements don't include start position 1721 // backward char movements don't include start position
1722 if (q > p && strchr("^0bBh\b\177", c)) q--; 1722 if (q > p && strchr("^0bBh\b\177", c)) q--;
1723 1723
1724 multiline = 0; 1724 multiline = 0;