1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-07 12:59:26 +00:00

* lisp/startup.el (command-line): Fix last change in package--activated

This commit is contained in:
Stefan Monnier 2019-11-11 17:14:30 -05:00
parent 6b4a97c1c7
commit 96828581d9

View File

@ -1013,8 +1013,6 @@ the `--debug-init' option to view a complete error backtrace."
(when debug-on-error-should-be-set
(setq debug-on-error debug-on-error-from-init-file))))
(defvar package--activated)
(defun command-line ()
"A subroutine of `normal-top-level'.
Amongst another things, it parses the command-line arguments."
@ -1235,7 +1233,7 @@ please check its value")
;; If any package directory exists, initialize the package system.
(and user-init-file
package-enable-at-startup
(not package--activated)
(not (bound-and-true-p package--activated))
(catch 'package-dir-found
(let (dirs)
(if (boundp 'package-directory-list)