vile
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [vile] spellflt.l: Include UTF-8 code points


From: Michael von der Heide
Subject: Re: [vile] spellflt.l: Include UTF-8 code points
Date: Mon, 24 Jun 2019 06:22:00 +0200

> Possibly clearer (ispell on my Debian8 works with this):
>
> diff -u -r1.59 filters/spellflt.l
> --- filters/spellflt.l  2013/12/02 01:32:53     1.59
> +++ filters/spellflt.l  2019/06/23 20:28:42
> @@ -157,7 +157,10 @@
>
>  %}
>
> -WORD           [[:alpha:]]([[:alnum:]])*
> +ALPHA          [[:alpha:]]
> +UMLAUT         \xc3[\x80-\xbf]
> +LETTER         ({ALPHA}|{UMLAUT})+
> +WORD           {LETTER}({LETTER}|[[:digit:]])*
>
>  %%
>
This one is probably better and works for me too.

--
Michael von der Heide



reply via email to

[Prev in Thread] Current Thread [Next in Thread]