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

Side by Side Diff: third_party/lua/src/ldo.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/lctype.h ('k') | third_party/lua/src/lmem.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: ldo.h,v 2.20 2011/11/29 15:55:08 roberto Exp $ 2 ** $Id: ldo.h,v 2.20 2011/11/29 15:55:08 roberto Exp $
3 ** Stack and Call structure of Lua 3 ** Stack and Call structure of Lua
4 ** See Copyright Notice in lua.h 4 ** See Copyright Notice in lua.h
5 */ 5 */
6 6
7 #ifndef ldo_h 7 #ifndef ldo_h
8 #define ldo_h 8 #define ldo_h
9 9
10 10
(...skipping 25 matching lines...) Expand all
36 ptrdiff_t oldtop, ptrdiff_t ef); 36 ptrdiff_t oldtop, ptrdiff_t ef);
37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult); 37 LUAI_FUNC int luaD_poscall (lua_State *L, StkId firstResult);
38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize); 38 LUAI_FUNC void luaD_reallocstack (lua_State *L, int newsize);
39 LUAI_FUNC void luaD_growstack (lua_State *L, int n); 39 LUAI_FUNC void luaD_growstack (lua_State *L, int n);
40 LUAI_FUNC void luaD_shrinkstack (lua_State *L); 40 LUAI_FUNC void luaD_shrinkstack (lua_State *L);
41 41
42 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode); 42 LUAI_FUNC l_noret luaD_throw (lua_State *L, int errcode);
43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud); 43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
44 44
45 #endif 45 #endif
46
OLDNEW
« no previous file with comments | « third_party/lua/src/lctype.h ('k') | third_party/lua/src/lmem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698