Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(396)

Side by Side Diff: third_party/lua/src/lstate.h

Issue 1842753002: Style bikeshed - remove extraneous whitespace (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/lua/src/lobject.h ('k') | third_party/lua/src/luaconf.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ** $Id: lstate.h,v 2.82 2012/07/02 13:37:04 roberto Exp $ 2 ** $Id: lstate.h,v 2.82 2012/07/02 13:37:04 roberto Exp $
3 ** Global State 3 ** Global State
4 ** See Copyright Notice in lua.h 4 ** See Copyright Notice in lua.h
5 */ 5 */
6 6
7 #ifndef lstate_h 7 #ifndef lstate_h
8 #define lstate_h 8 #define lstate_h
9 9
10 #include "lua.h" 10 #include "lua.h"
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 /* actual number of total bytes allocated */ 218 /* actual number of total bytes allocated */
219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt) 219 #define gettotalbytes(g) ((g)->totalbytes + (g)->GCdebt)
220 220
221 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt); 221 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt);
222 LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1); 222 LUAI_FUNC void luaE_freethread (lua_State *L, lua_State *L1);
223 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L); 223 LUAI_FUNC CallInfo *luaE_extendCI (lua_State *L);
224 LUAI_FUNC void luaE_freeCI (lua_State *L); 224 LUAI_FUNC void luaE_freeCI (lua_State *L);
225 225
226 226
227 #endif 227 #endif
228
OLDNEW
« no previous file with comments | « third_party/lua/src/lobject.h ('k') | third_party/lua/src/luaconf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698