fixed bug #22853: changed all .Xdefaults to .Xresources in xboard.texi
[xboard.git] / gamelist.c
index 0df36b6..a09ef64 100644 (file)
@@ -157,9 +157,9 @@ int GameListBuild(f)
     gameNumber = 0;
 
     lastStart = (ChessMove) 0;
-    yyskipmoves = TRUE;
+    yyskipmoves = FALSE;
     do {
-       yyboardindex = 1;
+        yyboardindex = 0;
        offset = yyoffset();
        cm = (ChessMove) yylex();
        switch (cm) {
@@ -222,6 +222,20 @@ int GameListBuild(f)
                }
            } while (cm == PGNTag || cm == Comment);
            break;
+         case NormalMove:
+           /* Allow the first game to start with an unnumbered move */
+           yyskipmoves = TRUE;
+           if (lastStart == (ChessMove) 0) {
+             if ((error = GameListNewGame(&currentListGame))) {
+               rewind(f);
+               yyskipmoves = FALSE;
+               return(error);
+             }
+             currentListGame->number = ++gameNumber;
+             currentListGame->offset = offset;
+             lastStart = MoveNumberOne;
+           }
+           break;
          default:
            break;
        }