* lisp/emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 20 Nov 2012 17:54:00 +0000 (12:54 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 20 Nov 2012 17:54:00 +0000 (12:54 -0500)
lisp/ChangeLog
lisp/emacs-lisp/byte-run.el

index 4be6154..edb1a65 100644 (file)
@@ -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.
index 06f404d..b4582a4 100644 (file)
@@ -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))))