diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-04-07 12:11:08 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-04-07 12:11:08 +0000 |
commit | 23b1539bf90bfb6b35d9a2be0a2b6b1e311c1460 (patch) | |
tree | 1e14ad6211df41634cbd0e9cf9a638e36ec17060 /conf/cf-lex.l | |
parent | 7976a574b692f747d833d899caf0fbbf702714c1 (diff) |
Filters upgraded - a bit. Moved code to filter.c because it is where
it belongs. (f-util.c stays there for auxiliary and non-important things.)
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index b6b0df70..a9e7b542 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -103,7 +103,7 @@ WHITE [ \t] return SYM; } -[={}:;,()+*/%-] { +[={}:;,()+*/%-<>~] { return yytext[0]; } |