diff options
| author | Mario Lang <mlang@delysid.org> | 2008-09-01 23:47:49 +0200 |
|---|---|---|
| committer | Mario Lang <mlang@delysid.org> | 2008-09-01 23:47:49 +0200 |
| commit | 115d7294699dbfaf0ac75e56262f549e4366eb15 (patch) | |
| tree | 97f1f817a83d38170476133938aff9115ed87f1c /chess-ics.el | |
| parent | 8892f2040c6075d461ea2f238cd5c857e9c36e06 (diff) | |
Fix ics style12 regex.
Diffstat (limited to 'chess-ics.el')
| -rw-r--r-- | chess-ics.el | 12 |
1 files 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 " ")))) " " |
