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

Side by Side Diff: third_party/lua/src/lctype.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/lauxlib.h ('k') | third_party/lua/src/ldo.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: lctype.h,v 1.12 2011/07/15 12:50:29 roberto Exp $ 2 ** $Id: lctype.h,v 1.12 2011/07/15 12:50:29 roberto Exp $
3 ** 'ctype' functions for Lua 3 ** 'ctype' functions for Lua
4 ** See Copyright Notice in lua.h 4 ** See Copyright Notice in lua.h
5 */ 5 */
6 6
7 #ifndef lctype_h 7 #ifndef lctype_h
8 #define lctype_h 8 #define lctype_h
9 9
10 #include "lua.h" 10 #include "lua.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 #define lisdigit(c) (isdigit(c)) 85 #define lisdigit(c) (isdigit(c))
86 #define lisspace(c) (isspace(c)) 86 #define lisspace(c) (isspace(c))
87 #define lisprint(c) (isprint(c)) 87 #define lisprint(c) (isprint(c))
88 #define lisxdigit(c) (isxdigit(c)) 88 #define lisxdigit(c) (isxdigit(c))
89 89
90 #define ltolower(c) (tolower(c)) 90 #define ltolower(c) (tolower(c))
91 91
92 #endif /* } */ 92 #endif /* } */
93 93
94 #endif 94 #endif
95
OLDNEW
« no previous file with comments | « third_party/lua/src/lauxlib.h ('k') | third_party/lua/src/ldo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698