changeset 99878:684861183d28

* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 24 Nov 2008 18:23:53 +0000
parents d13d7b16a3d5
children 4384519c1555
files lisp/ChangeLog lisp/emacs-lisp/elp.el
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Nov 24 17:37:44 2008 +0000
+++ b/lisp/ChangeLog	Mon Nov 24 18:23:53 2008 +0000
@@ -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
--- a/lisp/emacs-lisp/elp.el	Mon Nov 24 17:37:44 2008 +0000
+++ b/lisp/emacs-lisp/elp.el	Mon Nov 24 18:23:53 2008 +0000
@@ -345,7 +345,7 @@
 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)))