David Pirotte <[EMAIL PROTECTED]> writes: > Hello Neil, > > [http://www.neilvandyke.org/csv-scm/] > > I am trying to use your csv.scm code with guile-1.6 (debian) > and got the following error on load (SRFI-6, SRFI-23 are in > guile-core): > > guile> (use-modules (ice-9 syncase)) > guile> (load "csv.scm") > csv.scm:810:26: In expression (make-col-symbol i): > csv.scm:810:26: Unbound variable: make-col-symbol > ABORT: (unbound-variable) > > the letrec to which make-col-symbol pertains seems well formed > to me?
Just a guess: does it help to do (use-syntax (ice-9 syncase)) instead of (use-modules (ice-9 syncase))? Neil _______________________________________________ Guile-user mailing list [email protected] http://lists.gnu.org/mailman/listinfo/guile-user
