about summary refs log tree commit diff stats
path: root/cpp/tangle/030tangle.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-05-01 23:50:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-01 23:50:45 -0700
commitfb91839e1e78956e39c661b532137249f5fef451 (patch)
tree749b752aa01a73db181f40995f07f4abeffef8b0 /cpp/tangle/030tangle.cc
parentc2089aaa653852c3a3f5e100658f74ec6dc62fb8 (diff)
downloadmu-fb91839e1e78956e39c661b532137249f5fef451.tar.gz
1236
Diffstat (limited to 'cpp/tangle/030tangle.cc')
-rw-r--r--cpp/tangle/030tangle.cc3
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) {