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

Side by Side Diff: third_party/lua/src/lauxlib.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/libsdl/mac/SDL_config.h ('k') | third_party/lua/src/lctype.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: lauxlib.h,v 1.120 2011/11/29 15:55:08 roberto Exp $ 2 ** $Id: lauxlib.h,v 1.120 2011/11/29 15:55:08 roberto Exp $
3 ** Auxiliary functions for building Lua libraries 3 ** Auxiliary functions for building Lua libraries
4 ** See Copyright Notice in lua.h 4 ** See Copyright Notice in lua.h
5 */ 5 */
6 6
7 7
8 #ifndef lauxlib_h 8 #ifndef lauxlib_h
9 #define lauxlib_h 9 #define lauxlib_h
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 int sizehint); 201 int sizehint);
202 LUALIB_API void (luaL_openlib) (lua_State *L, const char *libname, 202 LUALIB_API void (luaL_openlib) (lua_State *L, const char *libname,
203 const luaL_Reg *l, int nup); 203 const luaL_Reg *l, int nup);
204 204
205 #define luaL_register(L,n,l) (luaL_openlib(L,(n),(l),0)) 205 #define luaL_register(L,n,l) (luaL_openlib(L,(n),(l),0))
206 206
207 #endif 207 #endif
208 208
209 209
210 #endif 210 #endif
211
212
OLDNEW
« no previous file with comments | « third_party/libsdl/mac/SDL_config.h ('k') | third_party/lua/src/lctype.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698