Skip to content

Commit

Permalink
Backport commit 563bf2fae from Emacs
Browse files Browse the repository at this point in the history
; * lisp/org/ol.el (org-link--decode-compound): `lsh` -> `ash`
563bf2fae5ec238172f1f16c81e51b9aadd77017
Mattias Engdegård
Wed Jul 20 13:51:55 2022 +0200
  • Loading branch information
mattiase authored and kyleam committed Oct 4, 2022
1 parent 07ca33e commit 1adbaca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/ol.el
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ followed by another \"%[A-F0-9]{2}\" group."
(cons 6 128))))
(when (>= val 192) (setq eat (car shift-xor)))
(setq val (logxor val (cdr shift-xor)))
(setq sum (+ (lsh sum (car shift-xor)) val))
(setq sum (+ (ash sum (car shift-xor)) val))
(when (> eat 0) (setq eat (- eat 1)))
(cond
((= 0 eat) ;multi byte
Expand Down

0 comments on commit 1adbaca

Please sign in to comment.