summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-19 20:52:31 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-19 20:52:31 +0000
commita9b4585f699d73197637ea73bfec4491378f4b15 (patch)
tree46b4ce4444dae9d8a21e93c4d2924dc87feb8831
parentf8ba8af60903c7b6fcdee009378ee51954245de5 (diff)
downloademacs-a9b4585f699d73197637ea73bfec4491378f4b15.tar.gz
(gud-irixdbx-marker-filter): Use %1ld, not %1d,
when printing $curline. (dbx, irix case): Likewise in arg of gud-down.
-rw-r--r--lisp/gud.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index 439484b60c8..cada35d5ac1 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -685,7 +685,7 @@ This works in IRIX 4, 5 and 6.")
;; prod dbx into printing out the line number and file
;; name in a form we can grok as below
(process-send-string (get-buffer-process gud-comint-buffer)
- "printf \"\032\032%1d:\",(long)$curline;file\n"))
+ "printf \"\032\032%1ld:\",(long)$curline;file\n"))
;; look for result of, say, "up" e.g.:
;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c]
;; (this will also catch one of the lines printed by "where")
@@ -770,7 +770,7 @@ and source-file directory for your debugger."
">" "Down (numeric arg) stack frames.")
;; Make dbx give out the source location info that we need.
(process-send-string (get-buffer-process gud-comint-buffer)
- "printf \"\032\032%1d:\",(long)$curline;file\n"))
+ "printf \"\032\032%1ld:\",(long)$curline;file\n"))
(t
(gud-def gud-up "up %p" "<" "Up (numeric arg) stack frames.")
(gud-def gud-down "down %p" ">" "Down (numeric arg) stack frames.")