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:
parent
dd419ee58f
commit
19dd6a6c52
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue