From 19dd6a6c52cd0c73394ac42c281d7de9f5a77508 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 24 Nov 2008 18:23:53 +0000 Subject: [PATCH] * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'. --- lisp/ChangeLog | 4 ++++ lisp/emacs-lisp/elp.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + + * emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'. + 2008-11-24 Andreas Schwab * 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))) -- 2.39.2