emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 8f2935a 2/4: Merge from origin/emacs-26


From: Glenn Morris
Subject: [Emacs-diffs] master 8f2935a 2/4: Merge from origin/emacs-26
Date: Tue, 10 Apr 2018 10:54:16 -0400 (EDT)

branch: master
commit 8f2935a49c7030a03c865ad9890de8bf20148655
Merge: 8b94b8d f674c89
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    Merge from origin/emacs-26
    
    f674c89 ; * ChangeLog.3: Update.
    80d868e * lisp/emacs-lisp/inline.el: Clarify apparent typos
    9f54f28 ; * lisp/auth-source.el (auth-sources): Update the :version tag.
---
 ChangeLog.3               | 23 ++++++++++++++++++++++-
 lisp/auth-source.el       |  2 +-
 lisp/emacs-lisp/inline.el |  4 ++++
 3 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/ChangeLog.3 b/ChangeLog.3
index abaed02..436f04b 100644
--- a/ChangeLog.3
+++ b/ChangeLog.3
@@ -1,3 +1,24 @@
+2018-04-05  Stefan Monnier  <address@hidden>
+
+       * lisp/emacs-lisp/inline.el: Clarify apparent typos
+
+2018-04-04  Ted Zlatanov  <address@hidden>
+
+       Allow sexp customization type in auth-sources
+
+       * lisp/auth-source.el (auth-sources): Allow sexp customization type.
+       Update the :version tag.
+
+       (cherry picked from commit 447da5b0d49b7aa14fa5d6969015770fdf9b9f92)
+
+2018-04-03  Nicolas Petton  <address@hidden>
+
+       * etc/NEWS: Remove temporary markup.
+
+       * etc/AUTHORS: Update.
+
+       * ChangeLog.3: Update.
+
 2018-04-03  Michael Albinus  <address@hidden>
 
        Fix Bug#31022
@@ -59159,7 +59180,7 @@
 
 This file records repository revisions from
 commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to
-commit 56794ac6c7fb1ca1dd1fd8dfb0ac40e20901f2c0 (inclusive).
+commit 80d868ed1cf3fb1bf62c9b53e65d1034f20be227 (inclusive).
 See ChangeLog.1 for earlier changes.
 
 ;; Local Variables:
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index 56122d1..355c11f 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -242,7 +242,7 @@ for details.
 It's best to customize this with `\\[customize-variable]' because the choices
 can get pretty complex."
   :group 'auth-source
-  :version "24.1" ;; No Gnus
+  :version "26.1" ;; No Gnus
   :type `(repeat :tag "Authentication Sources"
                  (choice
                   (string :tag "Just a file")
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el
index 02f9bf2..865e17e 100644
--- a/lisp/emacs-lisp/inline.el
+++ b/lisp/emacs-lisp/inline.el
@@ -91,9 +91,13 @@
 
 (defmacro inline--leteval (_var-exp &rest _body)
   (declare (indent 1) (debug (sexp &rest body)))
+  ;; BEWARE: if we're here it's presumably via macro-expansion of
+  ;; inline-letevals, so signal the error in terms of the user's code.
   (error "inline-letevals can only be used within define-inline"))
 (defmacro inline--letlisteval (_list &rest _body)
   (declare (indent 1) (debug (sexp &rest body)))
+  ;; BEWARE: if we're here it's presumably via macro-expansion of
+  ;; inline-letevals, so signal the error in terms of the user's code.
   (error "inline-letevals can only be used within define-inline"))
 
 (defmacro inline-letevals (vars &rest body)



reply via email to

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