diff --git a/ChangeLog.3 b/ChangeLog.3 index abaed02b32e..436f04b630b 100644 --- a/ChangeLog.3 +++ b/ChangeLog.3 @@ -1,3 +1,24 @@ +2018-04-05 Stefan Monnier + + * lisp/emacs-lisp/inline.el: Clarify apparent typos + +2018-04-04 Ted Zlatanov + + 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 + + * etc/NEWS: Remove temporary markup. + + * etc/AUTHORS: Update. + + * ChangeLog.3: Update. + 2018-04-03 Michael Albinus 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 56122d1d1a2..355c11fbf3a 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 02f9bf2ffc7..865e17e3d7d 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)