sylpheedclaws/sylpheed-claws/src quote_fmt_lex.l,1.8.2.3,1.8.2.4
| Newsgroups | gmane.mail.sylpheed.claws.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /pack/anoncvs/sylpheedclaws/sylpheed-claws/src
In directory sunsite.dk:/tmp/cvs-serv29629/src
Modified Files:
Tag: gtk2
quote_fmt_lex.l
Log Message:
2006-06-13 [wwp] 2.3.0cvs8
* src/quote_fmt_lex.l
fix wrong tokens returned in quote_fmt lexer, query not().
Index: quote_fmt_lex.l
===================================================================
RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/quote_fmt_lex.l,v
retrieving revision 1.8.2.3
retrieving revision 1.8.2.4
diff -u -d -r1.8.2.3 -r1.8.2.4
--- quote_fmt_lex.l 2006/06/12 15:59:21 1.8.2.3
+++ quote_fmt_lex.l 2006/06/13 10:49:49 1.8.2.4
@@ -89,13 +89,13 @@
"|p" /* insert program output */ return INSERT_PROGRAMOUTPUT;
"!d" /* query date */ return QUERY_NOT_DATE;
"!f" /* query from */ return QUERY_NOT_FROM;
-"!N"|"!F"|"!L"|"!I" /* query from name */ return QUERY_NOT_FULLNAME;
-"!s" /* query subject */ return QUERY_NOT_SUBJECT;
-"!t" /* query to */ return QUERY_NOT_TO;
-"!c" /* query cc */ return QUERY_NOT_CC;
-"!n" /* query newsgroups */ return QUERY_NOT_NEWSGROUPS;
-"!i" /* query message-id */ return QUERY_MESSAGEID;
-"!r" /* query references */ return QUERY_REFERENCES;
+"!N"|"!F"|"!L"|"!I" /* query not(from name) */ return QUERY_NOT_FULLNAME;
+"!s" /* query not(subject) */ return QUERY_NOT_SUBJECT;
+"!t" /* query not(to) */ return QUERY_NOT_TO;
+"!c" /* query not(cc) */ return QUERY_NOT_CC;
+"!n" /* query not(newsgroups) */ return QUERY_NOT_NEWSGROUPS;
+"!i" /* query not(message-id) */ return QUERY_NOT_MESSAGEID;
+"!r" /* query not(references) */ return QUERY_NOT_REFERENCES;
<S_DATE>"{" return OPARENT;
<S_DATE>"}" { BEGIN S_NORMAL; return CPARENT; }
<S_NORMAL>"{" return OPARENT;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]