diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-11-20 12:54:00 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-11-20 12:54:00 -0500 |
commit | 3837d988dd8892064c86ee483c6f09b2bacd7604 (patch) | |
tree | 4b319e1a38bde5fe817bef8530614090577c3685 /lisp/emacs-lisp/byte-run.el | |
parent | ea6de9b1f867a49a1ad062ca54e461cd3b1e003f (diff) | |
download | emacs-3837d988dd8892064c86ee483c6f09b2bacd7604.tar.gz |
* lisp/emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r-- | lisp/emacs-lisp/byte-run.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el index 06f404d615c..b4582a41d6c 100644 --- a/lisp/emacs-lisp/byte-run.el +++ b/lisp/emacs-lisp/byte-run.el @@ -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)))) |