]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/hex-util.el: Mention ash instead of lsh.
authorStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 01:24:55 +0000 (03:24 +0200)
committerStefan Kangas <stefan@marxist.se>
Tue, 9 Aug 2022 11:20:00 +0000 (13:20 +0200)
lisp/hex-util.el

index 0858e46ec548ba30674e79383be0143b9d736c67..101c8be7b4807d6236f588d30747b2cd639f904d 100644 (file)
@@ -41,8 +41,8 @@
         (dst (make-string (/ len 2) 0))
         (idx 0)(pos 0))
     (while (< pos len)
-      ;; logior and lsh are not byte-coded.
-      ;; (aset dst idx (logior (lsh (hex-char-to-num (aref string pos)) 4)
+      ;; logior and ash are not byte-coded.
+      ;; (aset dst idx (logior (ash (hex-char-to-num (aref string pos)) 4)
       ;;                           (hex-char-to-num (aref string (1+ pos)))))
       (aset dst idx (+ (* (hex-char-to-num (aref string pos)) 16)
                       (hex-char-to-num (aref string (1+ pos)))))
@@ -56,8 +56,8 @@
         (dst (make-string (* len 2) 0))
         (idx 0)(pos 0))
     (while (< pos len)
-      ;; logand and lsh are not byte-coded.
-      ;; (aset dst idx (num-to-hex-char (logand (lsh (aref string pos) -4) 15)))
+      ;; logand and ash are not byte-coded.
+      ;; (aset dst idx (num-to-hex-char (logand (ash (aref string pos) -4) 15)))
       (aset dst idx (num-to-hex-char (/ (aref string pos) 16)))
       (setq idx (1+ idx))
       ;; (aset dst idx (num-to-hex-char (logand (aref string pos) 15)))