Reorder some lexical analysis calls.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 26 Feb 2018 12:30:24 +0000 (13:30 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 26 Feb 2018 12:30:24 +0000 (13:30 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
lexer/syntactic_analyzer.c

index 5f14600699f60354ca18cf31189703244c7996d4..ae3251ae48c4da759f8f0fe02ef88aceefbffbc0 100644 (file)
@@ -1,7 +1,6 @@
 /* Syntactic analyzer */
 
 #include <stdbool.h>
-#include <stdarg.h>
 #include <stdlib.h>
 
 #include "global_vars.h"
@@ -47,10 +46,10 @@ static void analyze_P() {
         #if PRINT_TOKEN
         wprint_ctoken(stdout);
         #endif /* PRINT_TOKEN */
-        scanner();
         if (target != NULL) {
             fputws(L"<p>\n", target);
         }
+        scanner();
         analyze_TEXT();
         if (target != NULL) {
             fputws(L"\n</p>\n", target);
@@ -84,8 +83,8 @@ static void analyze_HEAD() {
             #if PRINT_TOKEN
             wprint_ctoken(stdout);
             #endif /* PRINT_TOKEN */
-            scanner();
             fputws(L"<meta name=\"author\" content=\"", target);
+            scanner();
             analyze_TEXT();
             fputws(L"\">", target);
         } else if (tokenType != NPARA && tokenType != SECTION && tokenType != FIN) {