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: Thomas Dickey
Subject: Re: [vile] spellflt.l: Include UTF-8 code points
Date: Mon, 24 Jun 2019 04:56:07 -0400
User-agent: Mutt/1.5.23 (2014-03-12)

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

Attachment: signature.asc
Description: Digital signature


reply via email to

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