diff options
| author | Paul Eggert | 2017-09-25 11:16:05 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-09-25 11:16:05 -0700 |
| commit | 0c06b93c1e467debd401eb0b3be4652fde14fa95 (patch) | |
| tree | 9fac5e948a58a4526dcc5ce6160b48197ea03f7d /lisp | |
| parent | c4e6ff097c946b46e3a659982c61e25093bde1a7 (diff) | |
| parent | 96aaeaaffac8a93d9c8126ba77ad217a3f323fce (diff) | |
| download | emacs-0c06b93c1e467debd401eb0b3be4652fde14fa95.tar.gz emacs-0c06b93c1e467debd401eb0b3be4652fde14fa95.zip | |
Merge from origin/emacs-26
96aaeaaffa ; * src/lcms.c: Minor stylistic changes in comments.
c3df816585 Fix compilation warning in etags.c
5490ccc5eb Add lisp variable lcms-d65-xyz
dee96f4a17 * lisp/emacs-lisp/cl-macs.el (cl-letf): Fix Edebug spec (b...
12e864eb30 Avoid MinGW64 compiler warnings in unexw32.c
625cee5316 Start emacs-26 release branch
# Conflicts:
# README
# configure.ac
# msdos/sed2v2.inp
# nt/README.W32
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/cus-edit.el | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 1e13e950476..6b67555770f 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1159,7 +1159,7 @@ Show the buffer in another window, but don't select it." | |||
| 1159 | (unless (eq symbol basevar) | 1159 | (unless (eq symbol basevar) |
| 1160 | (message "`%s' is an alias for `%s'" symbol basevar)))) | 1160 | (message "`%s' is an alias for `%s'" symbol basevar)))) |
| 1161 | 1161 | ||
| 1162 | (defvar customize-changed-options-previous-release "24.5" | 1162 | (defvar customize-changed-options-previous-release "25.3" |
| 1163 | "Version for `customize-changed-options' to refer back to by default.") | 1163 | "Version for `customize-changed-options' to refer back to by default.") |
| 1164 | 1164 | ||
| 1165 | ;; Packages will update this variable, so make it available. | 1165 | ;; Packages will update this variable, so make it available. |
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index d90e70d3d8b..32ba0ac3091 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el | |||
| @@ -2438,7 +2438,9 @@ As a special case, if `(PLACE)' is used instead of `(PLACE VALUE)', | |||
| 2438 | the PLACE is not modified before executing BODY. | 2438 | the PLACE is not modified before executing BODY. |
| 2439 | 2439 | ||
| 2440 | \(fn ((PLACE VALUE) ...) BODY...)" | 2440 | \(fn ((PLACE VALUE) ...) BODY...)" |
| 2441 | (declare (indent 1) (debug ((&rest (gate gv-place &optional form)) body))) | 2441 | (declare (indent 1) (debug ((&rest [&or (symbolp form) |
| 2442 | (gate gv-place &optional form)]) | ||
| 2443 | body))) | ||
| 2442 | (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings))) | 2444 | (if (and (not (cdr bindings)) (cdar bindings) (symbolp (caar bindings))) |
| 2443 | `(let ,bindings ,@body) | 2445 | `(let ,bindings ,@body) |
| 2444 | (cl--letf bindings () () body))) | 2446 | (cl--letf bindings () () body))) |