diff options
author | Brad King <brad.king@kitware.com> | 2013-10-24 13:51:44 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-10-24 13:51:44 (GMT) |
commit | c10e981fd072258a28822a373bf7a270d31ef181 (patch) | |
tree | a9843b44a89ec523d215f9103641ea6d10212911 /Source/cmListFileLexer.in.l | |
parent | a25c440f195e0ebc3f812c5e68f7f9a7546f249d (diff) | |
parent | 2945814de29923b8f063fa179f282fbbae630a36 (diff) | |
download | CMake-c10e981fd072258a28822a373bf7a270d31ef181.zip CMake-c10e981fd072258a28822a373bf7a270d31ef181.tar.gz CMake-c10e981fd072258a28822a373bf7a270d31ef181.tar.bz2 |
Merge topic 'cmake-syntax-updates'
2945814 cmRST: Teach cmake-module directive to scan bracket comments
8bb2ee9 cmake-developer.7: Improve flow of module documentation instructions
efcf318 Add \-continuation to CMake language quoted arguments
Diffstat (limited to 'Source/cmListFileLexer.in.l')
-rw-r--r-- | Source/cmListFileLexer.in.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmListFileLexer.in.l b/Source/cmListFileLexer.in.l index ecaf156..d45a8ea 100644 --- a/Source/cmListFileLexer.in.l +++ b/Source/cmListFileLexer.in.l @@ -222,7 +222,7 @@ LEGACY {MAKEVAR}|{UNQUOTED}|\"({MAKEVAR}|{UNQUOTED}|[ \t[=])*\" } <STRING>\\\n { - cmListFileLexerAppend(lexer, yytext, yyleng); + /* Continuation: text is not part of string */ ++lexer->line; lexer->column = 1; } |