"light C function" is a better name than "C-function pointer"

This commit is contained in:
Roberto Ierusalimschy
2010-04-18 10:22:48 -03:00
parent 575befc394
commit 53f9499f7f
6 changed files with 19 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: ltable.c,v 2.48 2010/04/05 16:26:37 roberto Exp roberto $
** $Id: ltable.c,v 2.49 2010/04/13 20:48:12 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -109,7 +109,7 @@ static Node *mainposition (const Table *t, const TValue *key) {
return hashboolean(t, bvalue(key));
case LUA_TLIGHTUSERDATA:
return hashpointer(t, pvalue(key));
case LUA_TCFP:
case LUA_TLCF:
return hashpointer(t, fvalue(key));
default:
return hashpointer(t, gcvalue(key));