emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/javaimp 01c8e2dc5d: Use nconc instead of append in few


From: Filipp Gunbin
Subject: [elpa] externals/javaimp 01c8e2dc5d: Use nconc instead of append in few places
Date: Thu, 5 May 2022 21:23:48 -0400 (EDT)

branch: externals/javaimp
commit 01c8e2dc5de7b06003acc41d1b9cf29c6747186a
Author: Filipp Gunbin <fgunbin@fastmail.fm>
Commit: Filipp Gunbin <fgunbin@fastmail.fm>

    Use nconc instead of append in few places
---
 javaimp.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/javaimp.el b/javaimp.el
index 6e8683a3b8..97455f5cf5 100644
--- a/javaimp.el
+++ b/javaimp.el
@@ -402,7 +402,7 @@ current module or source tree, see
           (module (when node
                     (javaimp--update-module-maybe node)
                     (javaimp-node-contents node)))
-          (classes (append
+          (classes (nconc
                     ;; jdk
                     (when javaimp-java-home
                       (javaimp--get-jdk-classes javaimp-java-home))
@@ -513,7 +513,7 @@ If there's no such directive, then the last resort is just
         (if-let ((buf (get-file-buffer s)))
             (push buf buffers)
           (push s files)))
-      (append
+      (nconc
        ;; Read files
        (javaimp--collect-classes
         'javaimp-source-file-cache #'javaimp--read-source-classes files)



reply via email to

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