Skip to content

Commit

Permalink
Rename RECURSIVE-SUBPATTERN -> SUBPATTERN-REFERENCE.
Browse files Browse the repository at this point in the history
  • Loading branch information
nbtrap committed Dec 30, 2013
1 parent da2bba6 commit 6a493f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions regex-class.lisp
Expand Up @@ -255,7 +255,7 @@ defined by the user."))
()
(:documentation "VOID objects represent empty regular expressions."))

(defclass recursive-subpattern (regex)
(defclass subpattern-reference (regex)
((num :initarg :num
:accessor num
:type fixnum
Expand All @@ -265,7 +265,7 @@ refers to.")
:accessor name
:documentation "The name of the register this subpattern reference
refers to or NIL."))
(:documentation "RECURSIVE-SUBPATTERN objects represent subpattern references
(:documentation "SUBPATTERN-REFERENCE objects represent subpattern references
for matching self-similar strings like nested parentheses."))

(defmethod initialize-instance :after ((str str) &rest init-args)
Expand Down

0 comments on commit 6a493f8

Please sign in to comment.