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 18:43:19 +0200

Thanks!

--
Michael von der Heide

Thomas Dickey <address@hidden> schrieb am Mo., 24. Juni 2019, 10:56:
On Mon, Jun 24, 2019 at 06:22:00AM +0200, Michael von der Heide wrote:
> > 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.

sounds good - see

https://github.com/ThomasDickey/vile-snapshots

--
Thomas E. Dickey <address@hidden>
https://invisible-island.net
ftp://ftp.invisible-island.net

reply via email to

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