]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/startup.el (normal-top-level): Use `path-separator' in place of ":".
authorAndrea Corallo <akrl@sdf.org>
Sun, 14 Feb 2021 20:14:34 +0000 (21:14 +0100)
committerAndrea Corallo <akrl@sdf.org>
Sun, 14 Feb 2021 20:14:34 +0000 (21:14 +0100)
lisp/startup.el

index ae0ac3cb933a2d861d0749267ae7fb6a0b40dd72..7e8fa47aea7233fbdb6be9f955590e94e12c0985 100644 (file)
@@ -540,7 +540,7 @@ It is the default value of the variable `top-level'."
       (defvar comp-eln-load-path)
       (let ((path-env (getenv "EMACSNATIVELOADPATH")))
         (when path-env
-          (dolist (path (split-string path-env ":"))
+          (dolist (path (split-string path-env path-separator))
             (unless (string= "" path)
               (push path comp-eln-load-path)))))
       (push (concat user-emacs-directory "eln-cache/") comp-eln-load-path))