From 19dd6a6c52cd0c73394ac42c281d7de9f5a77508 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 24 Nov 2008 18:23:53 +0000 Subject: * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'. --- lisp/emacs-lisp/elp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/emacs-lisp') 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))) -- cgit v1.2.3