Fixed bad ctags output

This commit is contained in:
Hackerpilot 2013-07-22 01:41:12 +00:00
parent 786d9f2ba6
commit a5fd3efdb8
1 changed files with 4 additions and 4 deletions

View File

@ -62,10 +62,10 @@ class CTagsPrinter : ASTVisitor
void print(File output) void print(File output)
{ {
output.write("!_TAG_FILE_FORMAT 2\n" output.write("!_TAG_FILE_FORMAT\t2\n"
~ "!_TAG_FILE_SORTED 1\n" ~ "!_TAG_FILE_SORTED\t1\n"
~ "!_TAG_FILE_AUTHOR Brian Schott\n" ~ "!_TAG_FILE_AUTHOR\tBrian Schott\n"
~ "!_TAG_PROGRAM_URL https://github.com/Hackerpilot/Dscanner/\n"); ~ "!_TAG_PROGRAM_URL\thttps://github.com/Hackerpilot/Dscanner/\n");
foreach (str; sort(tagLines)) foreach (str; sort(tagLines))
{ {
output.writeln(str); output.writeln(str);