Added locked pattern to extended search.
authorDarko Koruga <darko@users.sourceforge.net>
Fri, 27 Dec 2002 08:12:57 +0000 (08:12 +0000)
committerDarko Koruga <darko@users.sourceforge.net>
Fri, 27 Dec 2002 08:12:57 +0000 (08:12 +0000)
ChangeLog.claws
README.claws
configure.in
src/common/utils.c

index f70e6618970f5a4c8b038ef221dab097f12f2635..da75b543f1c0f45fcc32b81d2b8f63d83573b0fa 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-27 [darko]     0.8.8claws8
+
+       * src/common/utils.c
+               added locked pattern to extended search
+
 2002-12-27 [alfons]    0.8.8claws7
 
        * src/prefs_matcher.[ch]
index 878dae0872a970af7098771ac7d4a3b8d34c16de..aa77125cda44c8cdbfda43a42beb4592fd6bbeee 100644 (file)
@@ -502,6 +502,7 @@ mention it.
     h        S          messages which contain header S
     i        S          messages which contain S in Message-Id header
     I        S          messages which contain S in inreplyto header
+    L                   locked messages
     n        S          messages which are in newsgroup S
     N                   new messages
     O                   old messages
@@ -531,7 +532,7 @@ mention it.
     f "john beavis"    messages from john beavis
     %f "John Beavis"   messages from John Beavis (case sensitive)
     ~s foo             messages which do not have foo in the subject
-    f foo & s bar      messages from foo that do not have bar in thesubject
+    f foo & ~s bar     messages from foo that do not have bar in thesubject
 
 
 4. How to contribute
index b110cd06647f325717f30a9f0c28c35a651f89c0..d2c9c8987edcaa3e81b444fb898dfbaf02fef151 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws7
+EXTRA_VERSION=claws8
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 8da51b721288800e4b6c0050d2e78bc537552c39..3ce408aa0131e7a21e42ba8520b6fff2a71dd543 100644 (file)
@@ -3037,6 +3037,7 @@ gchar *expand_search_string(const gchar *search_string)
                { "h",  "headers_part",                 1,      TRUE,   TRUE  },
                { "i",  "header \"Message-Id\"",        1,      TRUE,   TRUE  },
                { "I",  "inreplyto",                    1,      TRUE,   TRUE  },
+               { "L",  "locked",                       0,      FALSE,  FALSE },
                { "n",  "newsgroups",                   1,      TRUE,   TRUE  },
                { "N",  "new",                          0,      FALSE,  FALSE },
                { "O",  "~new",                         0,      FALSE,  FALSE },