Skip to content

Commit a3c40c1

Browse files
committed
changed indentaions in a header file
1 parent 2088aad commit a3c40c1

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

php_dql_tokenizer.h

+27-18
Original file line numberDiff line numberDiff line change
@@ -110,27 +110,36 @@ extern zend_module_entry dql_tokenizer_module_entry;
110110
#define DQL_TOKEN_UNDEFINED (1<< 3)
111111

112112
typedef struct _php_dql_keyword_map {
113-
const char *keywords;
114-
int code;
113+
const char *keywords;
114+
int code;
115115
} php_dql_keyword_map;
116116

117117
php_dql_keyword_map php_dql_tokens[] = {
118-
{
119-
"delete\0update\0select\0set\0from\0where\0limit\0offset\0having\0",
120-
DQL_TOKEN_BASE
121-
},
122-
{
123-
"order\0group\0",
124-
DQL_TOKEN_BY
125-
},
126-
{
127-
"by\0",
128-
DQL_TOKEN_PASS
129-
},
130-
{
131-
NULL,
132-
DQL_TOKEN_UNDEFINED
133-
}
118+
{
119+
"delete\0update\0select\0set\0from\0where\0limit\0offset\0having\0",
120+
DQL_TOKEN_BASE
121+
},
122+
{
123+
"order\0group\0",
124+
DQL_TOKEN_BY
125+
},
126+
{
127+
"by\0",
128+
DQL_TOKEN_PASS
129+
},
130+
{
131+
NULL,
132+
DQL_TOKEN_UNDEFINED
133+
}
134134
};
135135

136136
#endif /* end of "ifndef PHP_DQL_TOKENIZER_H" */
137+
138+
/*
139+
* Local variables:
140+
* tab-width: 4
141+
* c-basic-offset: 4
142+
* End:
143+
* vim600: fdm=marker
144+
* vim: noet sw=4 ts=4
145+
*/

0 commit comments

Comments
 (0)