vile
[Top][All Lists]
Advanced

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

Re: [vile] vile-9.8i.patch.gz


From: Wayne Cuddy
Subject: Re: [vile] vile-9.8i.patch.gz
Date: Fri, 19 Oct 2012 14:02:43 -0400
User-agent: Mutt/1.4.2.3i

On Thu, Oct 18, 2012 at 07:17:18PM -0400, Thomas Dickey wrote:
> On Thu, Oct 18, 2012 at 05:52:46PM -0400, Thomas Dickey wrote:
> > On Thu, Oct 18, 2012 at 05:43:50PM -0400, Thomas Dickey wrote:
> > > According to the trace, it's using external filters.  I don't see
> > > anything wrong with the command-line, but if there was something
> > > wrong with the filter (such as not being there:-) that could explain
> > > it.  There've been issues also with interference from people's
> > > shell initialization (though that generally wouldn't break the
> > > whole thing).
> > 
> > Using strace, I can see generally what the issue is: the filter
> > isn't loading the sql.keywords file (at least, that doesn't show up).
> 
> Here's the fix:
> 
> diff -u -r1.60 filters/filterio.c
> --- filters/filterio.c        2011/04/07 22:28:31     1.60
> +++ filters/filterio.c        2012/10/18 23:15:10
> @@ -74,7 +74,7 @@
>                   if (((filter_def.options != 0
>                         && strchr(filter_def.options, *s) == 0)
>                        || filter_def.options == 0)
> -                     && strchr("vqQ", *s) == 0) {
> +                     && strchr("ivqQ", *s) == 0) {
>                       fprintf(stderr, "unknown option %c\n", *s);
>                       exit(BADEXIT);
>                   }

Problem solved!!

Thank you sir.

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



reply via email to

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