summaryrefslogtreecommitdiff
path: root/bs/re.scm
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-06-01 15:28:37 -0700
committerBen Sima <ben@bsima.me>2020-06-01 15:28:37 -0700
commit6aa4f1890a4e1327b5eabfb19386c94750223cbe (patch)
tree22e247aa1a74190288900c24fa35b7b5d0431e6b /bs/re.scm
parent96245a828aa9c717b847812812546667e090ee3f (diff)
Some fixups
Diffstat (limited to 'bs/re.scm')
-rw-r--r--bs/re.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/bs/re.scm b/bs/re.scm
index e2bc276..2b5752b 100644
--- a/bs/re.scm
+++ b/bs/re.scm
@@ -16,15 +16,16 @@
;; TODO: port srfi-115 to guile
;; TODO: make `match` and `search` do different things
- (export match group sub search
- I IGNORECASE M MULTILINE)
+ (export match group sub search compile
+ ;; I IGNORECASE M MULTILINE
+ )
(import (rnrs base (6))
(ice-9 regex))
- (define I regexp/icase)
- (define IGNORECASE regexp/icase)
- (define M regexp/newline)
- (define MULTILINE regexp/newline)
+ ;; (define I regexp/icase)
+ ;; (define IGNORECASE regexp/icase)
+ ;; (define M regexp/newline)
+ ;; (define MULTILINE regexp/newline)
;; Compile `pattern` into a regular expression object.
(define (compile pattern . flags)