> From: Neil Jerram <n...@ossau.uklinux.net>
> Mike Gran writes:

> > Here's one that doesn't work as expected.
> >
> > guile> (string-match "[:lower:]" "Hi, mom")
> > ==> #("Hi, mom" (5 . 6))
> > guile> (string-match "[:lower:]" "Hí, móm")
> > ==> #f
> >
> > Once you add accents on the vowels, nothing matches.

Doh!  This one doesn't work because it is nonsense.

It should have been [[:lower:]], not [:lower:]

Thanks,

Mike


Reply via email to