Skip to content
Snippets Groups Projects
Commit 9812b9ec authored by Vassil Vassilev's avatar Vassil Vassilev
Browse files

Teach cling how to cancel multiline input with (.@) at the prompt.

git-svn-id: http://root.cern.ch/svn/root/trunk@41463 27541ba8-7e3a-0410-8455-c3a389f83636
parent c47c9117
No related branches found
No related tags found
No related merge requests found
......@@ -238,6 +238,12 @@ cling::MetaProcessor::ProcessMeta(const std::string& input_line)
return true;
}
// Cancel the multiline input that has been requested
if (cmd_char == '@') {
m_InputValidator->Reset();
return true;
}
// Enable/Disable DynamicExprTransformer
if (cmd == "dynamicExtensions") {
if (param.empty()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment