diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-06-29 16:08:13 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-06-29 16:08:13 -0700 |
commit | a41f84c5c924eb66996951aab4ead5a8f9feb3eb (patch) | |
tree | 3777290e775f3c721ac49517d7029a1b772c3b22 | |
parent | be6b24929b5327fc68ac62530ce62988e2e7c486 (diff) | |
download | mu-a41f84c5c924eb66996951aab4ead5a8f9feb3eb.tar.gz |
3079
-rw-r--r-- | 027call_ingredient.cc | 2 | ||||
-rw-r--r-- | 038new_text.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/027call_ingredient.cc b/027call_ingredient.cc index b9195658..1f3b26e8 100644 --- a/027call_ingredient.cc +++ b/027call_ingredient.cc @@ -173,7 +173,7 @@ case INGREDIENT: { //: a particularly common array type is the string, or address:array:character :(code) bool is_mu_string(reagent/*copy*/ x) { - // Begin is_mu_string(x) + // End Preprocess is_mu_string(reagent x) return x.type && x.type->value == get(Type_ordinal, "address") && x.type->right diff --git a/038new_text.cc b/038new_text.cc index 33508395..c7696a9b 100644 --- a/038new_text.cc +++ b/038new_text.cc @@ -94,7 +94,7 @@ def main [ +app: 3 97 98 99 //: fixes way more than just stash -:(after "Begin is_mu_string(x)") +:(before "End Preprocess is_mu_string(reagent x)") if (!canonize_type(x)) return false; //: Allocate more to routine when initializing a literal string |