Can I suggest a change in libguile/gsubr.c line 105 from:

    fputs ("ERROR in scm_c_make_gsubr: too many args\n", stderr);

to

    fprintf (stderr, "ERROR in scm_c_make_gsubr: too many args (%d) to %s\n", req + 
opt + rst, name);

Also is it really necessary to call "exit" after this error?

(The context, in case it matters, was a script generating bindings
by the thousand (literally) for several libraries, so it was not
at all obvious initially where the problem was).

_______________________________________________
Bug-guile mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-guile

Reply via email to