about summary refs log tree commit diff stats
path: root/043new.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-19 09:57:40 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-19 09:57:40 -0700
commitde92036df9473d82ffb7844d9170f5ba45054bec (patch)
tree2b13f9adc8835da462ec0dbe3c9a8084ae6156c0 /043new.cc
parent0c2dbdade0e55be258fa861b7445705dd95b58ae (diff)
downloadmu-de92036df9473d82ffb7844d9170f5ba45054bec.tar.gz
1822
Diffstat (limited to '043new.cc')
-rw-r--r--043new.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/043new.cc b/043new.cc
index 18d93486..39c3aff4 100644
--- a/043new.cc
+++ b/043new.cc
@@ -306,12 +306,12 @@ recipe main [
 if (is_literal(current_instruction().ingredients.at(0))
     && current_instruction().ingredients.at(0).properties.at(0).second.at(0) == "literal-string") {
   products.resize(1);
-  products.at(0).push_back(new_string(current_instruction().ingredients.at(0).name));
+  products.at(0).push_back(new_mu_string(current_instruction().ingredients.at(0).name));
   break;
 }
 
 :(code)
-long long int new_string(const string& contents) {
+long long int new_mu_string(const string& contents) {
   // allocate an array just large enough for it
   long long int string_length = unicode_length(contents);
 //?   cout << "string_length is " << string_length << '\n'; //? 1