* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Nov 2008 18:23:53 +0000 (18:23 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Nov 2008 18:23:53 +0000 (18:23 +0000)
lisp/ChangeLog
lisp/emacs-lisp/elp.el

index aa78630..8af4689 100644 (file)
@@ -1,3 +1,7 @@
+2008-11-24  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
+
 2008-11-24  Andreas Schwab  <schwab@suse.de>
 
        * image.el (image-type-header-regexps): Recognize more xbm format
index 435c30c..955c554 100644 (file)
@@ -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)))