branch: externals/javaimp commit 01c8e2dc5de7b06003acc41d1b9cf29c6747186a Author: Filipp Gunbin <fgun...@fastmail.fm> Commit: Filipp Gunbin <fgun...@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)