diff options
author | Pavel Machek <pavel@ucw.cz> | 2000-05-25 14:58:38 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2000-05-25 14:58:38 +0000 |
commit | 9a09a64bb4160a5bb79cdf91bd95b7f77966f62e (patch) | |
tree | 7a5341aa9261056a4ab8061c16897efc24732025 /conf/cf-lex.l | |
parent | ba1dda495ad29cd86260533828ce38c7d327f045 (diff) |
Use ? in path matching to avoid /* trap.
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 bdf9261d..188d5362 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -139,7 +139,7 @@ WHITE [ \t] return CLI_MARKER; } -[={}:;,()+*/%-<>~\[\]] { +[={}:;,()+*/%-<>~\[\]?] { return yytext[0]; } |