1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 05:52:32 -08:00

(gud-irixdbx-marker-filter): Cast $curline to int.

This commit is contained in:
Richard M. Stallman 1994-10-25 20:29:03 +00:00
parent 60d15bc7d0
commit 4bc7c5ab7b

View file

@ -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")