# HG changeset patch # User Richard M. Stallman # Date 783116943 0 # Node ID 7afe28f7af592418add8d96066bd2d3b5295fa5c # Parent f8aa9230c3faf3a9e23b66586bffa2190f6d4205 (gud-irixdbx-marker-filter): Cast $curline to int. diff -r f8aa9230c3fa -r 7afe28f7af59 lisp/gud.el --- a/lisp/gud.el Tue Oct 25 14:16:02 1994 +0000 +++ b/lisp/gud.el Tue Oct 25 20:29:03 1994 +0000 @@ -557,7 +557,7 @@ ;; 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")