From e6b4978132b0437f928aa73b22c0a517959f78bb Mon Sep 17 00:00:00 2001 From: ak1 Date: Sun, 23 Jan 2005 22:21:37 +0000 Subject: [PATCH] Andreas Krennmair: fix for "invalid character class" bug (?) fixed ChangeLog dates git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@27 e385b8ad-14ed-0310-8656-cc95a2468c6d --- ChangeLog.mutt-ng | 8 ++++---- TODO.mutt-ng | 4 ++++ regex.c | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog.mutt-ng b/ChangeLog.mutt-ng index 6437827..0d768cf 100644 --- a/ChangeLog.mutt-ng +++ b/ChangeLog.mutt-ng @@ -1,9 +1,9 @@ Changes specific to mutt-ng: -2004-01-23: +2005-01-23: * Implemented umask option after Wolfgang Karall's idea -2004-01-22: +2005-01-22: * Reverted the xface patch as it broke a lot of things * Removed a few pscan(1) warnings * Integrated the following patches: @@ -15,13 +15,13 @@ Changes specific to mutt-ng: * Thomas Glanzmann's hcache patch * Corrected email addresses et al. -2004-01-14: +2005-01-14: * Integrated the following patches: * rr.compressed for compressed folders * Changed User-Agent string * Added operating_system to set fake operating system for User-Agent string -2004-01-09: +2005-01-09: * first version of mutt-ng * integrated the following patches: * sidebar patch diff --git a/TODO.mutt-ng b/TODO.mutt-ng index f319dca..590820b 100644 --- a/TODO.mutt-ng +++ b/TODO.mutt-ng @@ -12,3 +12,7 @@ doesn't add any special functionality - no, in one case, it already caused lots Update the ChangeLog file or create a new ChangeLog.mutt-ng file. Incorporate a lot more patches that are floating around in the web. + +Investigate why build w/ the following cmdline fails: +./configure +(or ./configure --with-regex --enable-imap --with-ssl=/usr/local/ssl -enable-buffy-size --with-exec-shell=/bin/zsh --enable-hcache --with-idn=/usr/local/lib/ ?) diff --git a/regex.c b/regex.c index 8f6f2ac..a16165a 100644 --- a/regex.c +++ b/regex.c @@ -168,7 +168,7 @@ extern char *re_syntax_table; static char re_syntax_table[CHAR_SET_SIZE]; -enum { MUTT_ALNUM, MUTT_ALPHA, MUTT_BLANK, MUTT_CNTRL, MUTT_DIGIT, MUTT_GRAPH, +enum { MUTT_ALNUM = 1, MUTT_ALPHA, MUTT_BLANK, MUTT_CNTRL, MUTT_DIGIT, MUTT_GRAPH, MUTT_LOWER, MUTT_PRINT, MUTT_PUNCT, MUTT_SPACE, MUTT_UPPER, MUTT_XDIGIT, MUTT_INVALID }; -- 2.20.1