Hi, "Walck, Scott" <[EMAIL PROTECTED]> writes:
> guile> (+ (vector 5 6) (vector 7 8)) > Segmentation fault (core dumped) It's possible that it's a bug in your implementation of `+', i.e., in `guile-scmutils'. Can you run gdb on the core (using "gdb `which guile` core") and show us the backtrace (using "bt" within gdb)? > guile> (set-current-module generic-environment) > #<directory (guile-user) b7bd75e0> > guile> + > #<procedure g:+ args> > guile> (+ (vector 2 3) (vector 5 6)) > #(7 9) Strange that it works here. So the above segfault may not be due to `guile-scmutils'... Thanks, Ludovic.