summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-07-27 05:51:39 +0000
committerRichard M. Stallman <rms@gnu.org>1993-07-27 05:51:39 +0000
commit0ed7f9e272508f02157c81dcd145294a6379848d (patch)
tree651861c79059445e7be668a6cc5d0690cef6894d /lisp
parent66f3eefdbcd25552363719cb0beb8f4d6f8bc70b (diff)
downloademacs-0ed7f9e272508f02157c81dcd145294a6379848d.tar.gz
(dbx): For gud-break, send a file command and a stop command.
Diffstat (limited to 'lisp')
-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."
(gud-common-init command-line)
- (gud-def gud-break "stop at \"%f\":%l"
+ (gud-def gud-break "file \"%f\"\nstop at %l"
"\C-b" "Set breakpoint at current line.")
+;; (gud-def gud-break "stop at \"%f\":%l"
+;; "\C-b" "Set breakpoint at current line.")
(gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
(gud-def gud-step "step %p" "\C-s" "Step one line with display.")
(gud-def gud-stepi "stepi %p" "\C-i" "Step one instruction with display.")