For backward compatiblity (for example with Proof), re-add support for .include
This commit is contained in:
parent
63de420f9c
commit
eb1b61cd1a
@ -286,7 +286,9 @@ namespace cling {
|
||||
}
|
||||
|
||||
bool MetaParser::isICommand() {
|
||||
if (getCurTok().is(tok::ident) && getCurTok().getIdent().equals("I")) {
|
||||
if (getCurTok().is(tok::ident) &&
|
||||
( getCurTok().getIdent().equals("I")
|
||||
|| getCurTok().getIdent().equals("include"))) {
|
||||
consumeAnyStringToken(tok::eof);
|
||||
llvm::StringRef path;
|
||||
if (getCurTok().is(tok::raw_ident))
|
||||
|
Loading…
Reference in New Issue
Block a user