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
b6df3e11
Commit
b6df3e11
authored
Jul 28, 1992
by
Richard M. Stallman
Browse files
*** empty log message ***
parent
56dc48ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
12 deletions
+9
-12
lisp/gud.el
lisp/gud.el
+9
-12
No files found.
lisp/gud.el
View file @
b6df3e11
...
@@ -152,11 +152,10 @@ and source-file directory for your debugger."
...
@@ -152,11 +152,10 @@ and source-file directory for your debugger."
(
gud-visit-file
.
gud-gdb-visit-file
)
(
gud-visit-file
.
gud-gdb-visit-file
)
(
gud-set-break
.
gud-gdb-set-break
)))
(
gud-set-break
.
gud-gdb-set-break
)))
(
gud-def
gud-step
"step"
"\C-c
s"
"Step one source line with display"
)
(
gud-def
gud-step
"step"
"\C-c
\C-s"
"Step one source line with display"
)
(
gud-def
gud-stepi
"stepi"
"\C-c
i"
"Step one instruction with display"
)
(
gud-def
gud-stepi
"stepi"
"\C-c
\C-i"
"Step one instruction with display"
)
(
gud-def
gud-next
"next"
"\C-c
n"
"Step one line (skip functions)"
)
(
gud-def
gud-next
"next"
"\C-c
\C-n"
"Step one line (skip functions)"
)
(
gud-def
gud-cont
"cont"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"cont"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"cont"
"\C-cc"
"Continue with display"
)
(
gud-def
gud-finish
"finish"
"\C-c\C-f"
"Finish executing current function"
)
(
gud-def
gud-finish
"finish"
"\C-c\C-f"
"Finish executing current function"
)
(
gud-def
gud-up
"up"
"\C-c<"
"Up N stack frames (numeric arg)"
)
(
gud-def
gud-up
"up"
"\C-c<"
"Up N stack frames (numeric arg)"
)
...
@@ -204,11 +203,10 @@ and source-file directory for your debugger."
...
@@ -204,11 +203,10 @@ and source-file directory for your debugger."
(
gud-visit-file
.
gud-sdb-visit-file
)
(
gud-visit-file
.
gud-sdb-visit-file
)
(
gud-set-break
.
gud-sdb-set-break
)))
(
gud-set-break
.
gud-sdb-set-break
)))
(
gud-def
gud-step
"s"
"\C-cs"
"Step one source line with display"
)
(
gud-def
gud-step
"s"
"\C-c
\C-
s"
"Step one source line with display"
)
(
gud-def
gud-stepi
"i"
"\C-ci"
"Step one instruction with display"
)
(
gud-def
gud-stepi
"i"
"\C-c
\C-
i"
"Step one instruction with display"
)
(
gud-def
gud-next
"S"
"\C-cn"
"Step one source line (skip functions)"
)
(
gud-def
gud-next
"S"
"\C-c
\C-
n"
"Step one source line (skip functions)"
)
(
gud-def
gud-cont
"c"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"c"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"c"
"\C-cc"
"Continue with display"
)
(
gud-common-init
path
)
(
gud-common-init
path
)
...
@@ -249,11 +247,10 @@ and source-file directory for your debugger."
...
@@ -249,11 +247,10 @@ and source-file directory for your debugger."
(
gud-visit-file
.
gud-dbx-visit-file
)
(
gud-visit-file
.
gud-dbx-visit-file
)
(
gud-set-break
.
gud-dbx-set-break
)))
(
gud-set-break
.
gud-dbx-set-break
)))
(
gud-def
gud-step
"step"
"\C-c
s"
"Step one source line with display"
)
(
gud-def
gud-step
"step"
"\C-c
\C-s"
"Step one source line with display"
)
(
gud-def
gud-stepi
"stepi"
"\C-c
i"
"Step one instruction with display"
)
(
gud-def
gud-stepi
"stepi"
"\C-c
\C-i"
"Step one instruction with display"
)
(
gud-def
gud-next
"next"
"\C-c
n"
"Step one line (skip functions)"
)
(
gud-def
gud-next
"next"
"\C-c
\C-n"
"Step one line (skip functions)"
)
(
gud-def
gud-cont
"cont"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"cont"
"\C-c\C-c"
"Continue with display"
)
(
gud-def
gud-cont
"cont"
"\C-c"
"Continue with display"
)
(
gud-def
gud-up
"up"
"\C-c<"
"Up N stack frames (numeric arg)"
)
(
gud-def
gud-up
"up"
"\C-c<"
"Up N stack frames (numeric arg)"
)
(
gud-def
gud-down
"down"
"\C-c>"
"Down N stack frames (numeric arg)"
)
(
gud-def
gud-down
"down"
"\C-c>"
"Down N stack frames (numeric arg)"
)
...
...
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