about summary refs log tree commit diff stats
path: root/027debug.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-17 12:39:09 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-17 12:39:09 -0700
commitab6ed192b75f084a023cde85ba5b2b65e741d966 (patch)
tree28540a0567ee19b0805831e1e433c65f94ff6c1a /027debug.cc
parentdc347ce2d95504a98bb542b48041f516a7f37003 (diff)
downloadmu-ab6ed192b75f084a023cde85ba5b2b65e741d966.tar.gz
1585
Diffstat (limited to '027debug.cc')
-rw-r--r--027debug.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/027debug.cc b/027debug.cc
index 60830bd8..36215244 100644
--- a/027debug.cc
+++ b/027debug.cc
@@ -7,7 +7,7 @@ Recipe_number["$print"] = _PRINT;
 :(before "End Primitive Recipe Implementations")
 case _PRINT: {
   for (long long int i = 0; i < SIZE(ingredients); ++i) {
-    if (isa_literal(current_instruction().ingredients.at(i))) {
+    if (is_literal(current_instruction().ingredients.at(i))) {
       trace(Primitive_recipe_depth, "run") << "$print: " << current_instruction().ingredients.at(i).name;
       cout << current_instruction().ingredients.at(i).name;
     }