aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-16 12:33:34 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-03-16 12:33:34 -0300
commit4907444db9d31f340f29f6ff7c9284ee06a03f5b (patch)
treefddf8b45f93ac575f60f7b2644c6c2ae555d821b /lua.h
parentc3cb31fa9aae0c004c1c145b2268c0ffa35a3f62 (diff)
downloadlua-4907444db9d31f340f29f6ff7c9284ee06a03f5b.tar.gz
lua-4907444db9d31f340f29f6ff7c9284ee06a03f5b.tar.bz2
lua-4907444db9d31f340f29f6ff7c9284ee06a03f5b.zip
'fTransfer' -> 'ftransfer' / 'nTransfer' -> 'ntransfer'
(keep the standard of names in lower case)
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua.h b/lua.h
index 5183459f..31e20397 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.343 2018/03/02 16:30:47 roberto Exp roberto $ 2** $Id: lua.h,v 1.344 2018/03/05 14:15:32 roberto Exp roberto $
3** Lua - A Scripting Language 3** Lua - A Scripting Language
4** Lua.org, PUC-Rio, Brazil (http://www.lua.org) 4** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
5** See Copyright Notice at the end of this file 5** See Copyright Notice at the end of this file
@@ -461,8 +461,8 @@ struct lua_Debug {
461 unsigned char nparams;/* (u) number of parameters */ 461 unsigned char nparams;/* (u) number of parameters */
462 char isvararg; /* (u) */ 462 char isvararg; /* (u) */
463 char istailcall; /* (t) */ 463 char istailcall; /* (t) */
464 unsigned short fTransfer;/* (r) index of first value transfered */ 464 unsigned short ftransfer; /* (r) index of first value transferred */
465 unsigned short nTransfer; /* (r) number of transfered values */ 465 unsigned short ntransfer; /* (r) number of transferred values */
466 char short_src[LUA_IDSIZE]; /* (S) */ 466 char short_src[LUA_IDSIZE]; /* (S) */
467 /* private part */ 467 /* private part */
468 struct CallInfo *i_ci; /* active function */ 468 struct CallInfo *i_ci; /* active function */