From ad10faa16fbe7bcd99973d4b05d53896fbbb0bad Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 15 Feb 2010 15:03:22 -0500 Subject: [PATCH] (ad-compile-function): Fix last change. --- lisp/emacs-lisp/advice.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index c8a7ca6a875..17f2ed53ba5 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -2687,7 +2687,7 @@ For that it has to be fbound with a non-autoload definition." (let ((symbol (make-symbol "advice-compilation")) (byte-compile-warnings byte-compile-warnings) ;; Don't pop up windows showing byte-compiler warnings. - (warning-suppress-types '(bytecomp))) + (warning-suppress-types '((bytecomp)))) (if (featurep 'cl) (byte-compile-disable-warning 'cl-functions)) (fset symbol (symbol-function function)) -- 2.11.4.GIT