about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-19 13:57:43 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-19 13:57:46 -0800
commit8e1d1add72e8b367ded6995c26f287f0b544cabe (patch)
treecaddba7b9094841098d1bab1b5934b0f49d92b41 /011load.cc
parent9f95c7451b940b6644cb6fd6783ea9c17168357e (diff)
downloadmu-8e1d1add72e8b367ded6995c26f287f0b544cabe.tar.gz
2686
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/011load.cc b/011load.cc
index 2003eb7d..fc097e63 100644
--- a/011load.cc
+++ b/011load.cc
@@ -76,7 +76,7 @@ void slurp_body(istream& in, recipe& result) {
   while (next_instruction(in, &curr)) {
     // End Rewrite Instruction(curr, recipe result)
     trace(9992, "load") << "after rewriting: " << to_string(curr) << end();
-    if (!curr.is_clear()) {
+    if (!curr.is_empty()) {
       curr.original_string = to_string(curr);
       result.steps.push_back(curr);
     }