summaryrefslogtreecommitdiff
path: root/lisp/gud.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-10-25 20:29:03 +0000
committerRichard M. Stallman <rms@gnu.org>1994-10-25 20:29:03 +0000
commit4d5ca685311b97d5d165192f08e8c1dd90846b5b (patch)
tree57184e66efa0987800eaee449ce9a2d3311c6fb9 /lisp/gud.el
parent860bdd00e57740b17e665bfa63ce34c888d70ffe (diff)
downloademacs-4d5ca685311b97d5d165192f08e8c1dd90846b5b.tar.gz
(gud-irixdbx-marker-filter): Cast $curline to int.
Diffstat (limited to 'lisp/gud.el')
-rw-r--r--lisp/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gud.el b/lisp/gud.el
index ed86d0fc655..75e89821922 100644
--- a/lisp/gud.el
+++ b/lisp/gud.el
@@ -557,7 +557,7 @@ This works in IRIX 4 and probably IRIX 5.")
;; 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:\",$curline;file\n"))
+ "printf \"\032\032%1d:\",(int)$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")