diff options
| author | Glenn Morris | 2018-04-10 07:50:48 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-04-10 07:50:48 -0700 |
| commit | 8f2935a49c7030a03c865ad9890de8bf20148655 (patch) | |
| tree | cffc125adcf808476e84e6a98c50aa5585414e33 | |
| parent | 8b94b8d89fe333d00ec78d1d2d972f095603c3ed (diff) | |
| parent | f674c89f7ced2f317f6383e6e572ef636ed7ab7a (diff) | |
| download | emacs-8f2935a49c7030a03c865ad9890de8bf20148655.tar.gz emacs-8f2935a49c7030a03c865ad9890de8bf20148655.zip | |
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.
| -rw-r--r-- | ChangeLog.3 | 23 | ||||
| -rw-r--r-- | lisp/auth-source.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/inline.el | 4 |
3 files changed, 27 insertions, 2 deletions
diff --git a/ChangeLog.3 b/ChangeLog.3 index abaed02b32e..436f04b630b 100644 --- a/ChangeLog.3 +++ b/ChangeLog.3 | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2018-04-05 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * lisp/emacs-lisp/inline.el: Clarify apparent typos | ||
| 4 | |||
| 5 | 2018-04-04 Ted Zlatanov <tzz@lifelogs.com> | ||
| 6 | |||
| 7 | Allow sexp customization type in auth-sources | ||
| 8 | |||
| 9 | * lisp/auth-source.el (auth-sources): Allow sexp customization type. | ||
| 10 | Update the :version tag. | ||
| 11 | |||
| 12 | (cherry picked from commit 447da5b0d49b7aa14fa5d6969015770fdf9b9f92) | ||
| 13 | |||
| 14 | 2018-04-03 Nicolas Petton <nicolas@petton.fr> | ||
| 15 | |||
| 16 | * etc/NEWS: Remove temporary markup. | ||
| 17 | |||
| 18 | * etc/AUTHORS: Update. | ||
| 19 | |||
| 20 | * ChangeLog.3: Update. | ||
| 21 | |||
| 1 | 2018-04-03 Michael Albinus <michael.albinus@gmx.de> | 22 | 2018-04-03 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 23 | ||
| 3 | Fix Bug#31022 | 24 | Fix Bug#31022 |
| @@ -59159,7 +59180,7 @@ | |||
| 59159 | 59180 | ||
| 59160 | This file records repository revisions from | 59181 | This file records repository revisions from |
| 59161 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to | 59182 | commit 9d56a21e6a696ad19ac65c4b405aeca44785884a (exclusive) to |
| 59162 | commit 56794ac6c7fb1ca1dd1fd8dfb0ac40e20901f2c0 (inclusive). | 59183 | commit 80d868ed1cf3fb1bf62c9b53e65d1034f20be227 (inclusive). |
| 59163 | See ChangeLog.1 for earlier changes. | 59184 | See ChangeLog.1 for earlier changes. |
| 59164 | 59185 | ||
| 59165 | ;; Local Variables: | 59186 | ;; 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. | |||
| 242 | It's best to customize this with `\\[customize-variable]' because the choices | 242 | It's best to customize this with `\\[customize-variable]' because the choices |
| 243 | can get pretty complex." | 243 | can get pretty complex." |
| 244 | :group 'auth-source | 244 | :group 'auth-source |
| 245 | :version "24.1" ;; No Gnus | 245 | :version "26.1" ;; No Gnus |
| 246 | :type `(repeat :tag "Authentication Sources" | 246 | :type `(repeat :tag "Authentication Sources" |
| 247 | (choice | 247 | (choice |
| 248 | (string :tag "Just a file") | 248 | (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 @@ | |||
| 91 | 91 | ||
| 92 | (defmacro inline--leteval (_var-exp &rest _body) | 92 | (defmacro inline--leteval (_var-exp &rest _body) |
| 93 | (declare (indent 1) (debug (sexp &rest body))) | 93 | (declare (indent 1) (debug (sexp &rest body))) |
| 94 | ;; BEWARE: if we're here it's presumably via macro-expansion of | ||
| 95 | ;; inline-letevals, so signal the error in terms of the user's code. | ||
| 94 | (error "inline-letevals can only be used within define-inline")) | 96 | (error "inline-letevals can only be used within define-inline")) |
| 95 | (defmacro inline--letlisteval (_list &rest _body) | 97 | (defmacro inline--letlisteval (_list &rest _body) |
| 96 | (declare (indent 1) (debug (sexp &rest body))) | 98 | (declare (indent 1) (debug (sexp &rest body))) |
| 99 | ;; BEWARE: if we're here it's presumably via macro-expansion of | ||
| 100 | ;; inline-letevals, so signal the error in terms of the user's code. | ||
| 97 | (error "inline-letevals can only be used within define-inline")) | 101 | (error "inline-letevals can only be used within define-inline")) |
| 98 | 102 | ||
| 99 | (defmacro inline-letevals (vars &rest body) | 103 | (defmacro inline-letevals (vars &rest body) |