1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.

This commit is contained in:
Juanma Barranquero 2008-11-24 18:23:53 +00:00
parent dd419ee58f
commit 19dd6a6c52
2 changed files with 5 additions and 1 deletions

View 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

View 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)))