aboutsummaryrefslogtreecommitdiff
path: root/ldblib.c
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 /ldblib.c
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 'ldblib.c')
-rw-r--r--ldblib.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ldblib.c b/ldblib.c
index cb542f67..a9776543 100644
--- a/ldblib.c
+++ b/ldblib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldblib.c,v 1.153 2018/02/20 16:52:50 roberto Exp roberto $ 2** $Id: ldblib.c,v 1.154 2018/03/05 14:15:04 roberto Exp roberto $
3** Interface from Lua to its debug API 3** Interface from Lua to its debug API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -186,8 +186,8 @@ static int db_getinfo (lua_State *L) {
186 settabss(L, "namewhat", ar.namewhat); 186 settabss(L, "namewhat", ar.namewhat);
187 } 187 }
188 if (strchr(options, 'r')) { 188 if (strchr(options, 'r')) {
189 settabsi(L, "fTransfer", ar.fTransfer); 189 settabsi(L, "ftransfer", ar.ftransfer);
190 settabsi(L, "nTransfer", ar.nTransfer); 190 settabsi(L, "ntransfer", ar.ntransfer);
191 } 191 }
192 if (strchr(options, 't')) 192 if (strchr(options, 't'))
193 settabsb(L, "istailcall", ar.istailcall); 193 settabsb(L, "istailcall", ar.istailcall);