Skip to content

Commit

Permalink
Use '\0' for non-existent tag kind instead of '-'
Browse files Browse the repository at this point in the history
Shouldn't collide with real tag kind symbols and a non-visible character
is more probably unused by ctags than a visible one.
  • Loading branch information
techee committed Jun 9, 2016
1 parent 6e89ee5 commit 379eefa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagmanager/src/tm_parser.c
Expand Up @@ -583,7 +583,7 @@ gchar tm_parser_get_tag_kind(TMTagType type, TMParserType lang)
if (entry->type == type)
return entry->kind;
}
return '-';
return '\0';
}


Expand Down

0 comments on commit 379eefa

Please sign in to comment.