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
922a9de3
Commit
922a9de3
authored
Jun 13, 2005
by
Luc Teirlinck
Browse files
(cancel-debug-on-entry): Mention default in minibuffer prompt.
parent
7efb41ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/emacs-lisp/debug.el
lisp/emacs-lisp/debug.el
+3
-3
No files found.
lisp/emacs-lisp/debug.el
View file @
922a9de3
...
...
@@ -698,9 +698,9 @@ When called interactively, prompt for FUNCTION in the minibuffer.
To specify a nil argument interactively, exit with an empty minibuffer."
(
interactive
(
list
(
let
((
name
(
completing-read
"Cancel debug on entry (to function): "
(
mapcar
'symbol-name
debug-
function
-list
)
nil
t
)))
(
completing-read
"Cancel debug on entry to function (default: all
function
s): "
(
mapcar
'symbol-name
debug-function-list
)
nil
t
)))
(
when
name
(
unless
(
string=
name
""
)
(
intern
name
))))))
...
...
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