branch: externals/bufferlo
commit c000d9fa139c5b4694b364d8af02cf5c948ff880
Author: shipmints <[email protected]>
Commit: Flo Rommel <[email protected]>
Use numeric equality for prefix-numeric-value's
---
bufferlo.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bufferlo.el b/bufferlo.el
index 2f27edabbe..dd093cb327 100644
--- a/bufferlo.el
+++ b/bufferlo.el
@@ -3686,13 +3686,13 @@ bookmarks, double for bookmarks, triple for bookmark
sets."
(apply 'bufferlo--bookmark-get-names
(cond
((and (consp current-prefix-arg)
- (eq (prefix-numeric-value current-prefix-arg) 4))
+ (= (prefix-numeric-value current-prefix-arg) 4))
(list #'bufferlo--bookmark-frame-handler))
((and (consp current-prefix-arg)
- (eq (prefix-numeric-value current-prefix-arg) 16))
+ (= (prefix-numeric-value current-prefix-arg) 16))
(list #'bufferlo--bookmark-tab-handler))
((and (consp current-prefix-arg)
- (eq (prefix-numeric-value current-prefix-arg) 64))
+ (= (prefix-numeric-value current-prefix-arg) 64))
(list #'bufferlo--bookmark-set-handler))
(t bufferlo--bookmark-handlers))))
(comps (bufferlo--bookmark-completing-read-multiple