diff options
| author | Ypnose <Ypnose@users.noreply.github.com> | 2014-05-14 22:32:35 +0200 |
|---|---|---|
| committer | Ypnose <Ypnose@users.noreply.github.com> | 2014-05-14 22:32:35 +0200 |
| commit | 3dcb79863747053228b0f4812aa86e7e8a098c74 (patch) | |
| tree | 427983e8f1370dd3c54ac8650b0874e73b8962e9 | |
| parent | 5bbc1243bc4fe6e594128c7dae7a52abcfe90757 (diff) | |
Remove newline after <p>
| -rw-r--r-- | smu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -366,7 +366,7 @@ doparagraph(const char *begin, const char *end, int newblock) { p = end; if(p - begin <= 1) return 0; - fputs("<p>\n", stdout); + fputs("<p>", stdout); process(begin, p, 0); fputs("</p>\n", stdout); return -(p - begin); |