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
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
15cf150d
Commit
15cf150d
authored
Mar 04, 2005
by
Lute Kamstra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(debugger-step-after-exit): Make it a defvar.
(debug-function-list): Ditto.
parent
b12e59fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
lisp/emacs-lisp/debug.el
lisp/emacs-lisp/debug.el
+5
-9
No files found.
lisp/emacs-lisp/debug.el
View file @
15cf150d
...
...
@@ -51,15 +51,11 @@ the middle is discarded, and just the beginning and end are displayed."
:group
'debugger
:version
"21.1"
)
(
defcustom
debug-function-list
nil
"List of functions currently set for debug on entry."
:type
'
(
repeat
function
)
:group
'debugger
)
(
defcustom
debugger-step-after-exit
nil
"Non-nil means \"single-step\" after the debugger exits."
:type
'boolean
:group
'debugger
)
(
defvar
debug-function-list
nil
"List of functions currently set for debug on entry."
)
(
defvar
debugger-step-after-exit
nil
"Non-nil means \"single-step\" after the debugger exits."
)
(
defvar
debugger-value
nil
"This is the value for the debugger to return, when it returns."
)
...
...
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