diff options
| author | Enno Boland (Gottox) <gottox@s01.de> | 2008-07-01 22:10:40 +0200 |
|---|---|---|
| committer | Enno Boland (Gottox) <gottox@s01.de> | 2008-07-01 22:10:40 +0200 |
| commit | cf7d7b62f29ffcc61fd4105b35e781933e1d46ac (patch) | |
| tree | 1a866a9a2c470f31dbb2cd21f021d012ded5e634 | |
| parent | 5fff5fdbe80372d2f79ce2b0d6324f5a1e39aeeb (diff) | |
don't remove comments when -n is set.
| -rw-r--r-- | smu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ int docomment(const char *begin, const char *end, int newblock) { char *p; - if(strncmp("<!--", begin, 4)) + if(nohtml || strncmp("<!--", begin, 4)) return 0; p = strstr(begin, "-->"); if(!p || p + 3 >= end) |