about summary refs log tree commit diff stats
path: root/011load.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-10-27 11:31:05 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-10-27 11:31:05 -0700
commit8619c61840d02568de7b5c79ee4dee660345fccc (patch)
treea22015f16885f67143cb420185667153de005b36 /011load.cc
parent7b8319f4b8b7b0c80d1e194fa586bfe1f8042fef (diff)
downloadmu-8619c61840d02568de7b5c79ee4dee660345fccc.tar.gz
2286
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 6fee184e..fceaff83 100644
--- a/011load.cc
+++ b/011load.cc
@@ -162,8 +162,9 @@ bool next_instruction(istream& in, instruction* curr) {
 }
 
 string next_word(istream& in) {
-  ostringstream out;
   skip_whitespace(in);
+  // End next_word Special-cases
+  ostringstream out;
   slurp_word(in, out);
   skip_whitespace(in);
   skip_comment(in);