Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
19dd6a6c
Commit
19dd6a6c
authored
Nov 24, 2008
by
Juanma Barranquero
Browse files
* emacs-lisp/elp.el (elp-instrument-list): Fix 2nd arg of `signal'.
parent
dd419ee5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/emacs-lisp/elp.el
lisp/emacs-lisp/elp.el
+1
-1
No files found.
lisp/ChangeLog
View file @
19dd6a6c
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
...
...
lisp/emacs-lisp/elp.el
View file @
19dd6a6c
...
...
@@ -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
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment