]> git.eshelyaron.com Git - emacs.git/commitdiff
Trivial fixes for last changes to package.el and marker.c
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 26 Mar 2018 18:29:49 +0000 (14:29 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 26 Mar 2018 18:29:49 +0000 (14:29 -0400)
* lisp/emacs-lisp/package.el (package-quickstart): Add missing version.
* src/marker.c (verify_bytepos): Fix typo.

lisp/emacs-lisp/package.el
src/marker.c

index b9fdf732ef43c639a0e0f1342291163755fa159e..94d98178c4da2e8317d99372cae73875f0694265 100644 (file)
@@ -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
index eaae8ff6a90742432a8a3ce4b9ac13ec95c1a6dc..2a45ae636ed5823474b0cb07ec3552d97e65e9d0 100644 (file)
@@ -775,7 +775,7 @@ ptrdiff_t
 verify_bytepos (ptrdiff_t charpos)
 {
   ptrdiff_t below = BEG;
-  ptrdiff_t below_byte = BYTE_BEG;
+  ptrdiff_t below_byte = BEG_BYTE;
 
   while (below != charpos)
     {