summaryrefslogtreecommitdiff
path: root/lisp/emacs-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/emacs-lisp
parentdd419ee58fed0f1b1885b5897baf582fb5a458b9 (diff)
downloademacs-19dd6a6c52cd0c73394ac42c281d7de9f5a77508.tar.gz
emacs-19dd6a6c52cd0c73394ac42c281d7de9f5a77508.tar.bz2
emacs-19dd6a6c52cd0c73394ac42c281d7de9f5a77508.zip
* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/elp.el2
1 files changed, 1 insertions, 1 deletions
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)))