mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
* lisp/emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
This commit is contained in:
parent
ea6de9b1f8
commit
3837d988dd
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
|
||||
|
||||
* subr.el (called-interactively-p-functions): New var.
|
||||
(internal--called-interactively-p--get-frame): New macro.
|
||||
(called-interactively-p, interactive-p): Rewrite in Lisp.
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ The return value of this function is not used."
|
|||
,(if (eq (car-safe compiler-function) 'lambda)
|
||||
`(lambda ,(append (cadr compiler-function) args)
|
||||
,@(cddr compiler-function))
|
||||
#',compiler-function)))))
|
||||
`#',compiler-function)))))
|
||||
(list 'doc-string
|
||||
#'(lambda (f _args pos)
|
||||
(list 'put (list 'quote f) ''doc-string-elt (list 'quote pos))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue