diff options
| -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.") | |||
| 94 | ([run] menu-item "Run" gud-run | 94 | ([run] menu-item "Run" gud-run |
| 95 | :enable (and (not gud-running) | 95 | :enable (and (not gud-running) |
| 96 | (memq gud-minor-mode '(gdba gdb jdb)))) | 96 | (memq gud-minor-mode '(gdba gdb jdb)))) |
| 97 | ([goto] menu-item "Continue to selection" gud-goto | 97 | ([goto] menu-item "Continue to selection" gud-until |
| 98 | :enable (and (not gud-running) | 98 | :enable (and (not gud-running) |
| 99 | (memq gud-minor-mode '(gdba gdb)))) | 99 | (memq gud-minor-mode '(gdba gdb)))) |
| 100 | ([remove] menu-item "Remove Breakpoint" gud-remove | 100 | ([remove] menu-item "Remove Breakpoint" gud-remove |
| @@ -151,7 +151,7 @@ Used to grey out relevant toolbar icons.") | |||
| 151 | (gud-print . "gud-print") | 151 | (gud-print . "gud-print") |
| 152 | (gud-display . "gud-display") | 152 | (gud-display . "gud-display") |
| 153 | (gud-run . "gud-run") | 153 | (gud-run . "gud-run") |
| 154 | (gud-goto . "gud-goto") | 154 | (gud-until . "gud-until") |
| 155 | (gud-cont . "gud-cont") | 155 | (gud-cont . "gud-cont") |
| 156 | (gud-step . "gud-step") | 156 | (gud-step . "gud-step") |
| 157 | (gud-next . "gud-next") | 157 | (gud-next . "gud-next") |
| @@ -469,7 +469,7 @@ and source-file directory for your debugger." | |||
| 469 | (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") | 469 | (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") |
| 470 | (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") | 470 | (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") |
| 471 | (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") | 471 | (gud-def gud-print "print %e" "\C-p" "Evaluate C expression at point.") |
| 472 | (gud-def gud-goto "until %l" "\C-u" "Continue up to current line.") | 472 | (gud-def gud-until "until %l" "\C-u" "Continue up to current line.") |
| 473 | (gud-def gud-run "run" nil "Run the program.") | 473 | (gud-def gud-run "run" nil "Run the program.") |
| 474 | 474 | ||
| 475 | (local-set-key "\C-i" 'gud-gdb-complete-command) | 475 | (local-set-key "\C-i" 'gud-gdb-complete-command) |