--- lib/backup.conf-lex.l 2008-01-08 16:09:47.925903782 +0100 +++ lib/conf-lex.l 2008-01-08 16:10:32.842654331 +0100 @@ -48,33 +48,33 @@ %} - /* Scanner for configuration files */ +/* Scanner for configuration files */ %option nodefault %option noyywrap %option nounput - /* All states are exclusive */ +/* All states are exclusive */ %x MIDDLE %x STRING %x ERR - /* Any whitespace-like character */ +/* Any whitespace-like character */ BLANK [ \f\t\v] IDCHAR [[:alnum:]_] - /* Note: `10', `10.4' and `.4' are valid, `10.' is not */ +/* Note: `10', `10.4' and `.4' are valid, `10.' is not */ FLOAT [[:digit:]]*\.?[[:digit:]]+ - /* Only positive whole numbers are recognized here */ +/* Only positive whole numbers are recognized here */ NUM 0|([1-9][[:digit:]]*) - /* Only number between 1 and 255, octally represented. */ +/* Only number between 1 and 255, octally represented. */ OCTESC (1[0-7]{0,2})|([2-7][0-7]?)|(0[1-7][0-7]?)|(00[1-7])