aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Burkett <justin@burkett.cc>2019-07-28 17:00:09 -0400
committerJustin Burkett <justin@burkett.cc>2019-07-28 17:00:09 -0400
commitb450e0f49400211426a18d86a6ae35e182457a84 (patch)
treea79747d17826423920ceff99525703546020d416
parent6501d42f0b9ce6e6cfe075348315c63aea046588 (diff)
Fix previous commit when evil-cross-lines is t
-rw-r--r--evil-commands.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/evil-commands.el b/evil-commands.el
index 5feea84..fc8641c 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -660,7 +660,8 @@ Movement is restricted to the current line unless `evil-cross-lines' is non-nil.
(let ((case-fold-search nil))
(unless (prog1
(search-forward (char-to-string char)
- (cond (evil-cross-lines)
+ (cond (evil-cross-lines
+ nil)
((and fwd visual)
(save-excursion
(end-of-visual-line)