Commit 13847009 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

STL: fix support of line breaks

Ref #9833
parent 22f5ab36
...@@ -103,9 +103,9 @@ static char *ParseText(uint8_t *data, int size, const char *charset) ...@@ -103,9 +103,9 @@ static char *ParseText(uint8_t *data, int size, const char *charset)
snprintf(tmp, sizeof(tmp), "<u>"); snprintf(tmp, sizeof(tmp), "<u>");
else if (code == 0x83) else if (code == 0x83)
snprintf(tmp, sizeof(tmp), "</u>"); snprintf(tmp, sizeof(tmp), "</u>");
#endif
else if (code == 0x8a) else if (code == 0x8a)
snprintf(tmp, sizeof(tmp), "\n"); snprintf(tmp, sizeof(tmp), "\n");
#endif
else { else {
t = NULL; t = NULL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment