This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


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

Re: Undefined variable in goops.scm ?


2000-01-10  Mikael Djurfeldt  <mdj@thalamus.nada.kth.se>

	* goops.scm (make-generic-bound-check-getter): Inserted missing
	comma which ties down the value of `assert-bound' in the compiled
	closure.  (Thanks to Thierry Bezecourt.)

Index: goops.scm
===================================================================
RCS file: /cvs/guile/guile/guile-oops/goops.scm,v
retrieving revision 1.53
diff -u -r1.53 goops.scm
--- goops.scm	1999/12/24 00:13:40	1.53
+++ goops.scm	2000/01/10 16:26:19
@@ -951,7 +951,7 @@
 	(let ((obj (caadr source)))
 	  ;; smart closure compilation
 	  (local-eval
-	   `(lambda (,obj) (assert-bound ,(caddr source) ,obj))
+	   `(lambda (,obj) (,assert-bound ,(caddr source) ,obj))
 	   (procedure-environment proc)))
 	(lambda (o) (assert-bound (proc o) o)))))
 

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