aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-27 05:51:39 +0000
committerRichard M. Stallman1993-07-27 05:51:39 +0000
commit9d021db37bedefd95a42e324299e99e525d73a2a (patch)
treefe382e361f653e4fba0e62f73bd58a93af5591e6
parent604ea1aaa3db5b4d8d43091d5cfcac39aa914169 (diff)
downloademacs-9d021db37bedefd95a42e324299e99e525d73a2a.tar.gz
emacs-9d021db37bedefd95a42e324299e99e525d73a2a.zip
(dbx): For gud-break, send a file command and a stop command.
-rw-r--r--lisp/gud.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 9d7ccdb8b00..eb6608b88c0 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -330,8 +330,10 @@ and source-file directory for your debugger."
330 330
331 (gud-common-init command-line) 331 (gud-common-init command-line)
332 332
333 (gud-def gud-break "stop at \"%f\":%l" 333 (gud-def gud-break "file \"%f\"\nstop at %l"
334 "\C-b" "Set breakpoint at current line.") 334 "\C-b" "Set breakpoint at current line.")
335;; (gud-def gud-break "stop at \"%f\":%l"
336;; "\C-b" "Set breakpoint at current line.")
335 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line") 337 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
336 (gud-def gud-step "step %p" "\C-s" "Step one line with display.") 338 (gud-def gud-step "step %p" "\C-s" "Step one line with display.")
337 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.") 339 (gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")