revert commit fix bug in ignoring character in <script> / <style> - grabtitle -… | |
git clone git://git.codemadness.org/grabtitle | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 4ec9f8ab3e5138d2bb57c973e843a14f511f2819 | |
parent c17b7c1af8b4c7ef64267cd2ab1c5455ba80fb52 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 5 Jun 2020 21:53:08 +0200 | |
revert commit fix bug in ignoring character in <script> / <style> | |
Diffstat: | |
M grabtitle.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/grabtitle.c b/grabtitle.c | |
@@ -33,7 +33,7 @@ getnext_ignore(void) | |
state++; | |
if (*state == '\0') { | |
parser.getnext = getnext; /* restore */ | |
- return ' '; | |
+ return c; | |
} | |
} else { | |
state = endtag; |