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: Thomas Dickey
Subject: Re: [vile] vile-9.8i.patch.gz
Date: Thu, 18 Oct 2012 19:17:18 -0400
User-agent: Mutt/1.5.20 (2009-06-14)

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);
                    }

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

Attachment: signature.asc
Description: Digital signature


reply via email to

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