Re: regexp-exec critcial section errors

2007-01-18 Thread Kevin Ryde
Han-Wen Nienhuys <[EMAIL PROTECTED]> writes: > > ERROR: Unbound variable: exception:string-contains-nul Oops, not enough checkin, fixed now. ___ Guile-devel mailing list Guile-devel@gnu.org http://lists.gnu.org/mailman/listinfo/guile-devel

Re: regexp-exec critcial section errors

2007-01-18 Thread Han-Wen Nienhuys
Kevin Ryde escreveu: > In regexp-exec in 1.8, a nul in the input string, or a bad flags arg, > results in a throw from a critical section, which calls abort(). Eg. > > (regexp-exec (make-regexp "x") "\0") > => abort > > (regexp-exec (make-regexp "x") "hello" 0 'badflags) >