Skip to content

Commit

Permalink
Sync whitespace in parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed Aug 7, 2016
1 parent 11dcc5e commit 9745d47
Show file tree
Hide file tree
Showing 13 changed files with 407 additions and 409 deletions.
2 changes: 1 addition & 1 deletion ctags/parsers/asm.c
Expand Up @@ -180,7 +180,7 @@ static AsmKind operatorKind (
static boolean isDefineOperator (const vString *const operator)
{
const unsigned char *const op =
(unsigned char*) vStringValue (operator);
(unsigned char*) vStringValue (operator);
const size_t length = vStringLength (operator);
const boolean result = (boolean) (length > 0 &&
toupper ((int) *op) == 'D' &&
Expand Down
3 changes: 1 addition & 2 deletions ctags/parsers/basic.c
Expand Up @@ -194,10 +194,9 @@ static int match_keyword (const char *p, KeyWord const *kw)
for (j = 0; j < 1; j++)
{
p = extract_name (p, name);
}
}
makeSimpleTag (name, BasicKinds, kw->kind);
vStringDelete (name);

return 1;
}

Expand Down

0 comments on commit 9745d47

Please sign in to comment.