# HG changeset patch # User Juanma Barranquero # Date 1227551033 0 # Node ID 684861183d28da11626cbf8acdff28eb76735ca4 # Parent d13d7b16a3d508d987fce63a0d37f42f09e20839 * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'. diff -r d13d7b16a3d5 -r 684861183d28 lisp/ChangeLog --- 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 + + * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'. + 2008-11-24 Andreas Schwab * image.el (image-type-header-regexps): Recognize more xbm format diff -r d13d7b16a3d5 -r 684861183d28 lisp/emacs-lisp/elp.el --- 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)))