about summary refs log tree commit diff stats
path: root/035lookup.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-17 08:24:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-17 08:24:19 -0700
commitdb69ad7a38d9ff1c2bb5b1a2274514d2bdc44d1b (patch)
tree22139431bddda0b8b1664ff6509fef87c01197b7 /035lookup.cc
parent067c8ed66c9bd4e9b4c936b54df293c665afa9bc (diff)
downloadmu-db69ad7a38d9ff1c2bb5b1a2274514d2bdc44d1b.tar.gz
3210 - new primitive: character-to-code
Thanks Ella Couch; this was long overdue.
Diffstat (limited to '035lookup.cc')
-rw-r--r--035lookup.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/035lookup.cc b/035lookup.cc
index 6e43f66a..0c9e1543 100644
--- a/035lookup.cc
+++ b/035lookup.cc
@@ -136,6 +136,8 @@ if (!canonize_type(r)) return false;
 if (!canonize_type(r)) return false;
 :(before "End Preprocess is_mu_boolean(reagent r)")
 if (!canonize_type(r)) return false;
+:(before "End Preprocess is_mu_character(reagent r)")
+if (!canonize_type(r)) return false;
 
 :(after "Update product While Type-checking Merge")
 if (!canonize_type(product)) continue;