diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-03-26 14:29:49 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2018-03-26 14:29:49 -0400 |
commit | c23f2b5d9e75ca0a8861043ec3d4114c89047b95 (patch) | |
tree | 2d2302dc52b97d3b1b5b65e4ca505876796ffc5d /lisp/emacs-lisp | |
parent | 6247a904e6c5a68e21a4af79b52ab22a90d6c389 (diff) | |
download | emacs-c23f2b5d9e75ca0a8861043ec3d4114c89047b95.tar.gz emacs-c23f2b5d9e75ca0a8861043ec3d4114c89047b95.tar.bz2 emacs-c23f2b5d9e75ca0a8861043ec3d4114c89047b95.zip |
Trivial fixes for last changes to package.el and marker.c
* lisp/emacs-lisp/package.el (package-quickstart): Add missing version.
* src/marker.c (verify_bytepos): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index b9fdf732ef4..94d98178c4d 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -3460,19 +3460,21 @@ The list is displayed in a buffer named `*Packages*'." ;; package.el). ;; Other than speeding things up, this also offers a bootstrap feature: -;; it lets us activate packages according to package-load-list and -;; package-user-dir even before those vars are set. +;; it lets us activate packages according to `package-load-list' and +;; `package-user-dir' even before those vars are set. (defcustom package-quickstart nil "Precompute activation actions to speed up startup. This requires the use of `package-quickstart-refresh' every time the activations need to be changed, such as when `package-load-list' is modified." - :type 'boolean) + :type 'boolean + :version "27.1") (defcustom package-quickstart-file (locate-user-emacs-file "package-quickstart.el") "Location of the file used to speed up activation of packages at startup." - :type 'file) + :type 'file + :version "27.1") (defun package--quickstart-maybe-refresh () (if package-quickstart |