]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/startup.el (command-line): Fix last change in package--activated
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 11 Nov 2019 22:14:30 +0000 (17:14 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 11 Nov 2019 22:14:30 +0000 (17:14 -0500)
lisp/startup.el

index 5fd76d9284ebb3c0b0c02ee67110e337e2b84285..efd1ae9a4fcde7202cd1441e616caff483ff5221 100644 (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)