indent classes, align by spaces
This commit is contained in:
@@ -252,7 +252,7 @@ static char *Com_ParseExt( const char *( *data_p ), qboolean allowLineBreaks ) {
|
||||
// check for a number
|
||||
// is this parsing of negative numbers going to cause expression problems
|
||||
if ( ( c >= '0' && c <= '9' ) || ( c == '-' && data[ 1 ] >= '0' && data[ 1 ] <= '9' ) ||
|
||||
( c == '.' && data[ 1 ] >= '0' && data[ 1 ] <= '9' ) ) {
|
||||
( c == '.' && data[ 1 ] >= '0' && data[ 1 ] <= '9' ) ) {
|
||||
do {
|
||||
|
||||
if ( len < MAX_TOKEN_CHARS - 1 ) {
|
||||
@@ -315,7 +315,7 @@ static char *Com_ParseExt( const char *( *data_p ), qboolean allowLineBreaks ) {
|
||||
|
||||
c = *data;
|
||||
} while ( ( c >= 'a' && c <= 'z' ) || ( c >= 'A' && c <= 'Z' ) || c == '_'
|
||||
|| ( c >= '0' && c <= '9' ) || c == '/' || c == '\\' || c == ':' || c == '.' );
|
||||
|| ( c >= '0' && c <= '9' ) || c == '/' || c == '\\' || c == ':' || c == '.' );
|
||||
|
||||
if ( len == MAX_TOKEN_CHARS ) {
|
||||
len = 0;
|
||||
|
||||
Reference in New Issue
Block a user