diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/elp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index 435c30c75ec..955c5547131 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -345,7 +345,7 @@ Use optional LIST if provided instead. If called interactively, read LIST using the minibuffer." (interactive "PList of functions to instrument: ") (unless (listp list) - (signal 'wrong-type-argument 'listp list)) + (signal 'wrong-type-argument (list 'listp list))) (let ((list (or list elp-function-list))) (mapcar 'elp-instrument-function list))) |