emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c23f2b5: Trivial fixes for last changes to package.


From: Stefan Monnier
Subject: [Emacs-diffs] master c23f2b5: Trivial fixes for last changes to package.el and marker.c
Date: Mon, 26 Mar 2018 14:30:07 -0400 (EDT)

branch: master
commit c23f2b5d9e75ca0a8861043ec3d4114c89047b95
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    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.
---
 lisp/emacs-lisp/package.el | 10 ++++++----
 src/marker.c               |  2 +-
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index b9fdf73..94d9817 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
diff --git a/src/marker.c b/src/marker.c
index eaae8ff..2a45ae6 100644
--- a/src/marker.c
+++ b/src/marker.c
@@ -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)
     {



reply via email to

[Prev in Thread] Current Thread [Next in Thread]