diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-11-24 18:23:53 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-11-24 18:23:53 +0000 |
commit | 19dd6a6c52cd0c73394ac42c281d7de9f5a77508 (patch) | |
tree | 53975690171297e344f46d862661bd312e437e1c /lisp | |
parent | dd419ee58fed0f1b1885b5897baf582fb5a458b9 (diff) | |
download | emacs-19dd6a6c52cd0c73394ac42c281d7de9f5a77508.tar.gz |
* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/emacs-lisp/elp.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index aa78630d4f4..8af468915c5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index 435c30c75ec..955c5547131 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -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))) |