emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/corfu a59c41d90e: Use ash instead of lsh


From: ELPA Syncer
Subject: [elpa] externals/corfu a59c41d90e: Use ash instead of lsh
Date: Sun, 7 Aug 2022 09:57:31 -0400 (EDT)

branch: externals/corfu
commit a59c41d90ede24cf5cdf4104790af3c318174b08
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Use ash instead of lsh
---
 extensions/corfu-history.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/corfu-history.el b/extensions/corfu-history.el
index 22571402b5..47b4640c79 100644
--- a/extensions/corfu-history.el
+++ b/extensions/corfu-history.el
@@ -74,7 +74,7 @@
   ;; shorter than 2**16 entries.
   (cl-loop for cand on candidates do
            (setcar cand (cons (car cand)
-                              (+ (lsh (gethash (car cand) corfu-history--hash 
#xFFFF) 13)
+                              (+ (ash (gethash (car cand) corfu-history--hash 
#xFFFF) 13)
                                  (length (car cand))))))
   (setq candidates (sort candidates #'corfu-history--sort-predicate))
   (cl-loop for cand on candidates do (setcar cand (caar cand)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]