aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-25 20:29:03 +0000
committerRichard M. Stallman1994-10-25 20:29:03 +0000
commit4bc7c5ab7bb57d6d46c8b2de07eda050c369820a (patch)
treeacc46df169849ac3ee3ca66d607b535616cd14b9
parent60d15bc7d07c2feffd6f12a490d33d8234dc3aa8 (diff)
downloademacs-4bc7c5ab7bb57d6d46c8b2de07eda050c369820a.tar.gz
emacs-4bc7c5ab7bb57d6d46c8b2de07eda050c369820a.zip
(gud-irixdbx-marker-filter): Cast $curline to int.
-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.")
557 ;; prod dbx into printing out the line number and file 557 ;; prod dbx into printing out the line number and file
558 ;; name in a form we can grok as below 558 ;; name in a form we can grok as below
559 (process-send-string (get-buffer-process gud-comint-buffer) 559 (process-send-string (get-buffer-process gud-comint-buffer)
560 "printf \"\032\032%1d:\",$curline;file\n")) 560 "printf \"\032\032%1d:\",(int)$curline;file\n"))
561 ;; look for result of, say, "up" e.g.: 561 ;; look for result of, say, "up" e.g.:
562 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c] 562 ;; .pplot.pplot(0x800) ["src/pplot.f":261, 0x400c7c]
563 ;; (this will also catch one of the lines printed by "where") 563 ;; (this will also catch one of the lines printed by "where")