summaryrefslogtreecommitdiffstats
path: root/Source/cmListFileLexer.c
Commit message (Collapse)AuthorAgeFilesLines
* BUG#1049: Added error message when file ends in an unterminated string.Brad King2004-08-311-10/+35
|
* BUG: Fixed parsing of unquoted arguments to allow double-quotes within the ↵Brad King2004-06-181-37/+34
| | | | argument.
* ENH: Added cmListFileLexer_SetString method to allow a string to be parsed ↵Brad King2004-04-211-31/+115
| | | | as input.
* ERR: Removed YY_BREAK statements after return statements because they are ↵Brad King2003-12-091-8/+1
| | | | unreachable.
* ERR: Added missing static keyword to cmListFileLexerSetToken and ↵Brad King2003-12-091-27/+41
| | | | cmListFileLexerAppend definitions.
* ERR: We must define YY_NO_UNISTD_H to build on windows.Brad King2003-12-081-0/+1
|
* ENH: Using lex-based tokenizer and a simple recursive-descent parser in ↵Brad King2003-12-081-0/+2216
place of the old hand-coded parser for CMake listfiles.