aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2003-09-22 22:02:51 +0000
committerNick Roberts2003-09-22 22:02:51 +0000
commit1dd52b8210a638b2e6b2b01f05ebbab4e7bb95a0 (patch)
tree54dc08afe1fa1fc9f3e353a03fa31b476fc12ca2
parent81fc7b45ed7a42af5ab3df45e014cd2bbf82690c (diff)
downloademacs-1dd52b8210a638b2e6b2b01f05ebbab4e7bb95a0.tar.gz
emacs-1dd52b8210a638b2e6b2b01f05ebbab4e7bb95a0.zip
(perldb): Add gud-until to list of commands.
Update gud-remove.
-rw-r--r--lisp/progmodes/gud.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index a0e22859457..ad43117e694 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -96,9 +96,9 @@ Used to grey out relevant toolbar icons.")
96 ([run] menu-item "Run" gud-run 96 ([run] menu-item "Run" gud-run
97 :enable (and (not gud-running) 97 :enable (and (not gud-running)
98 (memq gud-minor-mode '(gdba gdb dbx jdb)))) 98 (memq gud-minor-mode '(gdba gdb dbx jdb))))
99 ([goto] menu-item "Continue to selection" gud-until 99 ([until] menu-item "Continue to selection" gud-until
100 :enable (and (not gud-running) 100 :enable (and (not gud-running)
101 (memq gud-minor-mode '(gdba gdb)))) 101 (memq gud-minor-mode '(gdba gdb perldb))))
102 ([remove] menu-item "Remove Breakpoint" gud-remove 102 ([remove] menu-item "Remove Breakpoint" gud-remove
103 :enable (not gud-running)) 103 :enable (not gud-running))
104 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak 104 ([tbreak] menu-item "Temporary Breakpoint" gud-tbreak
@@ -1254,7 +1254,7 @@ and source-file directory for your debugger."
1254 (set (make-local-variable 'gud-minor-mode) 'perldb) 1254 (set (make-local-variable 'gud-minor-mode) 'perldb)
1255 1255
1256 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.") 1256 (gud-def gud-break "b %l" "\C-b" "Set breakpoint at current line.")
1257 (gud-def gud-remove "d %l" "\C-d" "Remove breakpoint at current line") 1257 (gud-def gud-remove "B %l" "\C-d" "Remove breakpoint at current line")
1258 (gud-def gud-step "s" "\C-s" "Step one source line with display.") 1258 (gud-def gud-step "s" "\C-s" "Step one source line with display.")
1259 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).") 1259 (gud-def gud-next "n" "\C-n" "Step one line (skip functions).")
1260 (gud-def gud-cont "c" "\C-r" "Continue with display.") 1260 (gud-def gud-cont "c" "\C-r" "Continue with display.")
@@ -1262,6 +1262,8 @@ and source-file directory for your debugger."
1262; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).") 1262; (gud-def gud-up "up %p" "<" "Up N stack frames (numeric arg).")
1263; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).") 1263; (gud-def gud-down "down %p" ">" "Down N stack frames (numeric arg).")
1264 (gud-def gud-print "p %e" "\C-p" "Evaluate perl expression at point.") 1264 (gud-def gud-print "p %e" "\C-p" "Evaluate perl expression at point.")
1265 (gud-def gud-until "c %l" "\C-u" "Continue to current line.")
1266
1265 1267
1266 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ") 1268 (setq comint-prompt-regexp "^ DB<+[0-9]+>+ ")
1267 (setq paragraph-start comint-prompt-regexp) 1269 (setq paragraph-start comint-prompt-regexp)