aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-09-11 18:29:37 +0000
committerEli Zaretskii2001-09-11 18:29:37 +0000
commitcfcda0ba4a66d5f557005a3653735d15f3466df3 (patch)
tree6a32eb6e25f185891d14cbddb6fc1afdb3a6254d
parentbd819d14fd8e9b0be253731d9355c4ffb5d5520a (diff)
downloademacs-cfcda0ba4a66d5f557005a3653735d15f3466df3.tar.gz
emacs-cfcda0ba4a66d5f557005a3653735d15f3466df3.zip
(dbx) <gud-dbx-use-stopformat-p>: Move this case into the
`t' branch of `cond', since Irix 6.1 and up is a special case of the standard dbx interface.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gud.el8
2 files changed, 10 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1292cc2cfbf..e65b3b82339 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12001-09-11 Eli Zaretskii <a34785@is.elta.co.il>
2
3 * gud.el (dbx) <gud-dbx-use-stopformat-p>: Move this case into the
4 `t' branch of `cond', since Irix 6.1 and up is a special case of
5 the standard dbx interface.
6
12001-09-11 Miles Bader <miles@gnu.org> 72001-09-11 Miles Bader <miles@gnu.org>
2 8
3 * comint.el (comint-send-input): When waiting for echoed input, 9 * comint.el (comint-send-input): When waiting for echoed input,
diff --git a/lisp/gud.el b/lisp/gud.el
index 52bfacf6338..b03f2099059 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -1046,14 +1046,14 @@ and source-file directory for your debugger."
1046 ;; Make dbx give out the source location info that we need. 1046 ;; Make dbx give out the source location info that we need.
1047 (process-send-string (get-buffer-process gud-comint-buffer) 1047 (process-send-string (get-buffer-process gud-comint-buffer)
1048 "printf \"\032\032%1d:\",(int)$curline;file\n")) 1048 "printf \"\032\032%1d:\",(int)$curline;file\n"))
1049 (gud-dbx-use-stopformat-p
1050 (process-send-string (get-buffer-process gud-comint-buffer)
1051 "set $stopformat=1\n"))
1052 (t 1049 (t
1053 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.") 1050 (gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
1054 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.") 1051 (gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")
1055 (gud-def gud-break "file \"%d%f\"\nstop at %l" 1052 (gud-def gud-break "file \"%d%f\"\nstop at %l"
1056 "\C-b" "Set breakpoint at current line."))) 1053 "\C-b" "Set breakpoint at current line.")
1054 (if gud-dbx-use-stopformat-p
1055 (process-send-string (get-buffer-process gud-comint-buffer)
1056 "set $stopformat=1\n"))))
1057 1057
1058 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line") 1058 (gud-def gud-remove "clear %l" "\C-d" "Remove breakpoint at current line")
1059 (gud-def gud-step "step %p" "\C-s" "Step one line with display.") 1059 (gud-def gud-step "step %p" "\C-s" "Step one line with display.")