]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-irixdbx-marker-filter): Cast $curline to int.
authorRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 20:29:03 +0000 (20:29 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 20:29:03 +0000 (20:29 +0000)
lisp/gud.el

index ed86d0fc65522da45bd0286e2547707b69072737..75e89821922d3a2dcc0a01c6a5c303da4f3114af 100644 (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")