mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
* lisp/emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
parens around the arg list. Silly backport. Fixes: debbugs:11499
This commit is contained in:
parent
77e1259ea0
commit
6d4a05e3e0
2 changed files with 8 additions and 2 deletions
|
|
@ -313,8 +313,9 @@ It is a list of elements of the form either:
|
|||
(require 'help-fns)
|
||||
(cons (help-add-fundoc-usage
|
||||
(if (stringp (car hdr)) (pop hdr))
|
||||
(format "(fn %S)"
|
||||
(cl--make-usage-args orig-args)))
|
||||
(format "%S"
|
||||
(cons 'fn
|
||||
(cl--make-usage-args orig-args))))
|
||||
hdr)))
|
||||
(list (nconc (list 'let* bind-lets)
|
||||
(nreverse bind-forms) body)))))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue