Author: petergibbs
Date: Thu Feb 21 05:33:58 2008
New Revision: 25929
Modified:
trunk/languages/lua/pmc/luatable.pmc
Log:
Fix typo in r25897 i.e. changed INTERP to interp.
Modified: trunk/languages/lua/pmc/luatable.pmc
==============================================================================
--- trunk/languages/lua/pmc/luatable.pmc (original)
+++ trunk/languages/lua/pmc/luatable.pmc Thu Feb 21 05:33:58 2008
@@ -95,7 +95,7 @@
h = PMC_int_val(key);
}
else if (PMC_type(key) == dynpmc_LuaString) {
- h = string_hash(interp, VTABLE_get_string(INTERP, key), 3793);
+ h = string_hash(interp, VTABLE_get_string(interp, key), 3793);
/* h = PMC_str_val(key)->hashval; */
}
else {