From c16f36ceee5b42c150c05d04c349616dc14f7236 Mon Sep 17 00:00:00 2001
From: Alex Shinn <ashinn@users.noreply.github.com>
Date: Tue, 3 Mar 2015 08:17:13 +0900
Subject: [PATCH] Fixing typo in non-chibi regexp code.

The second %char-set:punctuation should have been %char-set:symbol.
---
 lib/chibi/regexp.sld | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/chibi/regexp.sld b/lib/chibi/regexp.sld
index d1554bd9..e8f49e1f 100644
--- a/lib/chibi/regexp.sld
+++ b/lib/chibi/regexp.sld
@@ -43,7 +43,7 @@
         (char-set-intersection char-set:ascii char-set:letter+digit))
       (define %char-set:punctuation
         (char-set-intersection char-set:ascii char-set:punctuation))
-      (define %char-set:punctuation
+      (define %char-set:symbol
         (char-set-intersection char-set:ascii char-set:symbol))
       (define %char-set:graphic
         (char-set-intersection char-set:ascii char-set:graphic))