]> git.eshelyaron.com Git - emacs.git/commitdiff
; * byte-opt.el (byte-decompile-bytecode-1): Add more documentation.
authorVibhav Pant <vibhavp@gmail.com>
Sun, 5 Feb 2017 13:25:45 +0000 (18:55 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Sun, 5 Feb 2017 13:25:45 +0000 (18:55 +0530)
lisp/emacs-lisp/byte-opt.el

index b962916e67aea4ecd194ec1be9b6deac44c74168..edfa578f85b9109c2b36248503eecb5da12daffd 100644 (file)
                               (push (cons (+ (car tag) (lsh (cdr tag) 8)) newtag) tags)
                               (puthash value newtag last-constant)))
                         last-constant)
+               ;; Replace the hash table referenced in the lapcode with our
+               ;; modified one.
                (cl-loop for el in-ref lap
-                        when (and (listp el)
+                        when (and (listp el) ;; make sure we're at the correct op
                                   (eq (nth 1 el) 'byte-constant)
                                   (eq (nth 2 el) orig-table))
                         do (setf (nth 2 el) last-constant) and return nil))))