emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp b7678cf 2/2: * lisp/emacs-lisp/comp.el (comp-finaliz


From: Andrea Corallo
Subject: feature/native-comp b7678cf 2/2: * lisp/emacs-lisp/comp.el (comp-finalize-relocs): Better commentary.
Date: Mon, 13 Apr 2020 15:51:44 -0400 (EDT)

branch: feature/native-comp
commit b7678cf10e13727dab300c7162649cafc488e27e
Author: Andrea Corallo <address@hidden>
Commit: Andrea Corallo <address@hidden>

    * lisp/emacs-lisp/comp.el (comp-finalize-relocs): Better commentary.
---
 lisp/emacs-lisp/comp.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index a4764f9..fda8f7d 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]