about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
Diffstat (limited to '011load.cc')
-rw-r--r--011load.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/011load.cc b/011load.cc
index 0a473394..926a02ad 100644
--- a/011load.cc
+++ b/011load.cc
@@ -143,7 +143,7 @@ bool next_instruction(istream& in, instruction* curr) {
     raise << "instruction prematurely ended with '<-'\n" << end();
     return false;
   }
-  curr->old_name = curr->name = *p;  ++p;
+  curr->name = *p;  ++p;
   // curr->operation will be set at transform time
 
   for (;  p != words.end();  ++p)
@@ -159,6 +159,7 @@ bool next_instruction(istream& in, instruction* curr) {
     raise << "9: unbalanced '[' for recipe\n" << end();
     return false;
   }
+  // End next_instruction(curr)
   return true;
 }