Skip to content

Commit b8e078d

Browse files
committed
Trace statement in markdown.cpp
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...] ```
1 parent 03cd498 commit b8e078d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/markdown.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class Trace
105105
}
106106
}
107107
data_s[j++]=0;
108-
fprintf(IOSTREAM,"> %s data=[%s]\n",qPrint(func),data_s);
108+
fprintf(IOSTREAM,"> %s data=[%s...]\n",qPrint(func),data_s);
109109
s_indent++;
110110
}
111111
}

0 commit comments

Comments
 (0)