mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-07 06:50:23 -08:00
* lisp/emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
parens around the arg list. Fixes: debbugs:11499
This commit is contained in:
parent
ab414ba198
commit
ac348012f4
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
|
* emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
|
||||||
|
parens around the arg list (bug#11499).
|
||||||
|
|
||||||
2012-05-17 Juri Linkov <juri@jurta.org>
|
2012-05-17 Juri Linkov <juri@jurta.org>
|
||||||
|
|
||||||
* isearch.el (word-search-regexp, word-search-backward)
|
* isearch.el (word-search-regexp, word-search-backward)
|
||||||
|
|
|
||||||
|
|
@ -318,8 +318,9 @@ It is a list of elements of the form either:
|
||||||
(require 'help-fns)
|
(require 'help-fns)
|
||||||
(cons (help-add-fundoc-usage
|
(cons (help-add-fundoc-usage
|
||||||
(if (stringp (car hdr)) (pop hdr))
|
(if (stringp (car hdr)) (pop hdr))
|
||||||
(format "(fn %S)"
|
(format "%S"
|
||||||
(cl--make-usage-args orig-args)))
|
(cons 'fn
|
||||||
|
(cl--make-usage-args orig-args))))
|
||||||
hdr)))
|
hdr)))
|
||||||
(list (nconc (list 'let* bind-lets)
|
(list (nconc (list 'let* bind-lets)
|
||||||
(nreverse bind-forms) body)))))))
|
(nreverse bind-forms) body)))))))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue