Skip to content

Commit

Permalink
Trace statement in markdown.cpp
Browse files Browse the repository at this point in the history
When we run the markdown processor with tracing on Windows we see a.o.
```
class QCString __thiscall Markdown::detab(const class QCString &,int &) data=[    \\page ExamplePag]
```
so some "strange: characters at the end., due to a hard coded ellipse. Expected would be something like:
```
class QCString __thiscall Markdown::detab(const class QCString &,int &) data=[    \\page ExamplePag...]
```
  • Loading branch information
albert-github committed Jan 6, 2022
1 parent 03cd498 commit b8e078d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class Trace
}
}
data_s[j++]=0;
fprintf(IOSTREAM,"> %s data=[%s]\n",qPrint(func),data_s);
fprintf(IOSTREAM,"> %s data=[%s...]\n",qPrint(func),data_s);
s_indent++;
}
}
Expand Down

0 comments on commit b8e078d

Please sign in to comment.