summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-11-24 18:23:53 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-11-24 18:23:53 +0000
commit19dd6a6c52cd0c73394ac42c281d7de9f5a77508 (patch)
tree53975690171297e344f46d862661bd312e437e1c /lisp
parentdd419ee58fed0f1b1885b5897baf582fb5a458b9 (diff)
downloademacs-19dd6a6c52cd0c73394ac42c281d7de9f5a77508.tar.gz
* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/elp.el2
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)))