URI:
       revert commit fix bug in ignoring character in <script> / <style> - grabtitle - stupid HTML title grabber
  HTML git clone git://git.codemadness.org/grabtitle
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 4ec9f8ab3e5138d2bb57c973e843a14f511f2819
   DIR parent c17b7c1af8b4c7ef64267cd2ab1c5455ba80fb52
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       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(-)
       ---
   DIR 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;