Skip to content

Commit 1adbaca

Browse files
mattiasekyleam
authored andcommitted
Backport commit 563bf2fae from Emacs
; * lisp/org/ol.el (org-link--decode-compound): `lsh` -> `ash` 563bf2fae5ec238172f1f16c81e51b9aadd77017 Mattias Engdegård Wed Jul 20 13:51:55 2022 +0200
1 parent 07ca33e commit 1adbaca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lisp/ol.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ followed by another \"%[A-F0-9]{2}\" group."
646646
(cons 6 128))))
647647
(when (>= val 192) (setq eat (car shift-xor)))
648648
(setq val (logxor val (cdr shift-xor)))
649-
(setq sum (+ (lsh sum (car shift-xor)) val))
649+
(setq sum (+ (ash sum (car shift-xor)) val))
650650
(when (> eat 0) (setq eat (- eat 1)))
651651
(cond
652652
((= 0 eat) ;multi byte

0 commit comments

Comments
 (0)