From 115d7294699dbfaf0ac75e56262f549e4366eb15 Mon Sep 17 00:00:00 2001 From: Mario Lang Date: Mon, 1 Sep 2008 23:47:49 +0200 Subject: Fix ics style12 regex. --- chess-ics.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/chess-ics.el b/chess-ics.el index 19b0c5e..8341651c 100644 --- a/chess-ics.el +++ b/chess-ics.el @@ -170,12 +170,12 @@ standard position). In those cases, this variable should be set to nil.") (group (repeat 8 (in "-pnbrqkPNBRQK"))) " " (group (repeat 8 (in "-pnbrqkPNBRQK"))) " " (group (repeat 8 (in "-pnbrqkPNBRQK"))) " " - (group (in "BW")) ? - (group (and (? ?-) (in "0-7"))) ? - (group (and (? ?-) digit)) ? - (group (and (? ?-) digit)) ? - (group (and (? ?-) digit)) ? - (group (and (? ?-) digit)) ? + (group (in "BW")) " " + (group (and (? ?-) (in "0-7"))) " " + (group (and (? ?-) digit)) " " + (group (and (? ?-) digit)) " " + (group (and (? ?-) digit)) " " + (group (and (? ?-) digit)) " " (group (+ digit)) " " (group (+ digit)) " " (group (+ (not (in " ")))) " " -- cgit v1.2.3