]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/comp.el (comp-finalize-relocs): Better commentary.
authorAndrea Corallo <akrl@sdf.org>
Mon, 13 Apr 2020 19:43:21 +0000 (20:43 +0100)
committerAndrea Corallo <akrl@sdf.org>
Mon, 13 Apr 2020 19:44:09 +0000 (20:44 +0100)
lisp/emacs-lisp/comp.el

index a4764f91c3ad6e0f4ad649eb5c8e31096e826386..fda8f7dc780bb09d84febda39f0c68c5e735627a 100644 (file)
@@ -2082,11 +2082,11 @@ Update all insn accordingly."
          (d-impure-idx (comp-data-container-idx d-impure))
          (d-ephemeral (comp-ctxt-d-ephemeral comp-ctxt))
          (d-ephemeral-idx (comp-data-container-idx d-ephemeral)))
-    ;; Remove things in d-impure that are already in d-default.
+    ;; Remove entries in d-impure already present in d-default.
     (cl-loop for obj being each hash-keys of d-impure-idx
              when (gethash obj d-default-idx)
                do (remhash obj d-impure-idx))
-    ;; Remove things in d-ephemeral that are already in d-default or
+    ;; Remove entries in d-ephemeral already present in d-default or
     ;; d-impure.
     (cl-loop for obj being each hash-keys of d-ephemeral-idx
              when (or (gethash obj d-default-idx) (gethash obj d-impure-idx))