This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Kawa & GCC 3.0


On 05 Sep 2001 07:54:02 -0500, Weiqi Gao wrote:
> 
> Internal error while compiling ports.scm
> gnu.mapping.UnboundSymbol: Unbound symbol set-port-line

This seems to be a case of a missing exclamation point. (set-port-line!
was defined.)

-- 
Weiqi Gao
weiqigao@networkusa.net
Index: ports.scm
===================================================================
RCS file: /cvs/kawa/kawa/kawa/lib/ports.scm,v
retrieving revision 1.21
diff -u -r1.21 ports.scm
--- ports.scm	2001/06/04 16:53:47	1.21
+++ ports.scm	2001/09/05 23:17:25
@@ -66,7 +66,7 @@
    port line))
 
 (define (set-input-port-line-number! port num)
-  (set-port-line port (- num 1)))
+  (set-port-line! port (- num 1)))
 
 (define (port-column port)
   ((primitive-virtual-method <gnu.text.LineBufferedReader>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]