branch: elpa/anzu
commit 91f34780031ea6b6718e3db6246e8bb431be53bd
Merge: c7ecd57c24 368a4ebe8c
Author: Syohei YOSHIDA <[email protected]>
Commit: Syohei YOSHIDA <[email protected]>
Merge pull request #15 from syohex/fix-nonprefix-case
Fix no prefix number case
---
anzu.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/anzu.el b/anzu.el
index 03d4b262a8..790a3e5da7 100644
--- a/anzu.el
+++ b/anzu.el
@@ -499,7 +499,7 @@
;; This variable is introduced at Emacs 24.4, I should fix this variable to
;; version variable
(and (boundp 'list-matching-lines-prefix-face)
- (< prefix 0)))
+ (and prefix (< prefix 0))))
(defun anzu--construct-perform-replace-arguments (from to delimited beg end
backward)
(if backward