From 6d52ac69e940a6be6c15c5c6f84a183bf56899c8 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 26 Jan 2016 15:41:53 +0200 Subject: Implement support for sourcing .cli files The idea is that the file is "read in" as if its content was copy-n-pasted. For example: "\h|Installation|" source "INSTALL.cli" // Also used to generate plain text INSTALL. Unlike include, source can appear anywhere in the file. --- cli/lexer.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/lexer.hxx') diff --git a/cli/lexer.hxx b/cli/lexer.hxx index 710090d..830860c 100644 --- a/cli/lexer.hxx +++ b/cli/lexer.hxx @@ -131,7 +131,7 @@ private: keyword_map keyword_map_; bool eos_; - bool include_; + bool include_; // Literal in include or source. bool valid_; xchar buf_; -- cgit v1.1