Skip to content

Commit

Permalink
Merge pull request #15 from chaw/master
Browse files Browse the repository at this point in the history
minor fixes to doc and code of sre->string
  • Loading branch information
sjamaan authored Dec 5, 2016
2 parents 660a5fc + a5c5b69 commit 46e182c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion irregex-utils.scm
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
(case (car x)
((: seq)
(cond
((and (pair? (cddr x)) (pair? (cddr x)) (not (eq? x obj)))
((and (pair? (cdr x)) (pair? (cddr x)) (not (eq? x obj)))
(display "(?:" out) (for-each lp (cdr x)) (display ")" out))
(else (for-each lp (cdr x)))))
((submatch)
Expand Down
2 changes: 1 addition & 1 deletion irregex.doc
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ doesn't help when irregex is able to build a DFA.

\subsubsection*{(sre->string <sre>)}

Convert an SRE to a POSIX-style regular expression string, if
Convert an SRE to a PCRE-style regular expression string, if
possible.

\section{Roadmap}
Expand Down

0 comments on commit 46e182c

Please sign in to comment.