diff options
author | Nick Roberts <nickrob@snap.net.nz> | 2003-01-11 16:58:19 +0000 |
---|---|---|
committer | Nick Roberts <nickrob@snap.net.nz> | 2003-01-11 16:58:19 +0000 |
commit | fcf58c9ba320753ea24e1cb75a7c66c78d552bf4 (patch) | |
tree | 9007c26df1065796dc9fa1037f3707502d8b608f /lisp | |
parent | 9f14cf875f5f3d7ae23d62787f7b499d8adb1369 (diff) | |
download | emacs-fcf58c9ba320753ea24e1cb75a7c66c78d552bf4.tar.gz |
(gud-menu-map, gud-tool-bar-map, gdb): Change gud-goto to gud-until.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gud.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/gud.el b/lisp/gud.el index 5a6f0a7fdd2..08b0ee92f33 100644 --- a/lisp/gud.el +++ b/lisp/gud.el @@ -94,7 +94,7 @@ Used to grey out relevant toolbar icons.") ([run] menu-item "Run" gud-run :enable (and (not gud-running) (memq gud-minor-mode '(gdba gdb jdb)))) - ([goto] menu-item "Continue to selection" gud-goto + ([goto] menu-item "Continue to selection" gud-until :enable (and (not gud-running) (memq gud-minor-mode '(gdba gdb)))) ([remove] menu-item "Remove Breakpoint" gud-remove @@ -151,7 +151,7 @@ Used to grey out relevant toolbar icons.") (gud-print . "gud-print") (gud-display . "gud-display") (gud-run . "gud-run") - (gud-goto . "gud-goto") + (gud-until . "gud-until") (gud-cont . "gud-cont") (gud-step . "gud-step") (gud-next . "gud-next") @@ -469,7 +469,7 @@ and source-file directory for your debugger." (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") - (gud-def gud-goto "until %l" "\C-u" "Continue up to current line.") + (gud-def gud-until "until %l" "\C-u" "Continue up to current line.") (gud-def gud-run "run" nil "Run the program.") (local-set-key "\C-i" 'gud-gdb-complete-command) |