diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-05-01 23:50:45 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-05-01 23:50:45 -0700 |
commit | fb91839e1e78956e39c661b532137249f5fef451 (patch) | |
tree | 749b752aa01a73db181f40995f07f4abeffef8b0 | |
parent | c2089aaa653852c3a3f5e100658f74ec6dc62fb8 (diff) | |
download | mu-fb91839e1e78956e39c661b532137249f5fef451.tar.gz |
1236
-rw-r--r-- | cpp/tangle/030tangle.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/tangle/030tangle.cc b/cpp/tangle/030tangle.cc index 33ff6e28..407cd23e 100644 --- a/cpp/tangle/030tangle.cc +++ b/cpp/tangle/030tangle.cc @@ -283,7 +283,6 @@ list<Line>::iterator balancing_curly(list<Line>::iterator curr) { // A scenario is one or more sessions separated by calls to CLEAR_TRACE ('===') // A session is one or more lines of input -// followed by a return value ('=>') // followed by one or more lines expected in trace in order ('+') // followed by one or more lines trace shouldn't include ('-') // followed by one or more lines expressing counts of specific layers emitted in trace ('$') @@ -335,7 +334,7 @@ void emit_test(const string& name, list<Line>& lines, list<Line>& result) { bool is_input(const string& line) { if (line.empty()) return true; - return line != "===" && line[0] != '+' && line[0] != '-' && !starts_with(line, "=>") && line[0] != '$' && line[0] != '?'; + return line != "===" && line[0] != '+' && line[0] != '-' && line[0] != '$' && line[0] != '?'; } Line input_lines(list<Line>& hunk) { |