|
@@ -4689,7 +4689,7 @@ The regexp returned will match the entire expression including the
|
|
delimiters. It will also define a single group which contains the
|
|
delimiters. It will also define a single group which contains the
|
|
match except for the outermost delimiters. The maximum depth of
|
|
match except for the outermost delimiters. The maximum depth of
|
|
stacked delimiters is N. Escaping delimiters is not possible."
|
|
stacked delimiters is N. Escaping delimiters is not possible."
|
|
- (let* ((nothing (concat "[^" "\\" left "\\" right "]*?"))
|
|
|
|
|
|
+ (let* ((nothing (concat "[^" left right "]*?"))
|
|
(or "\\|")
|
|
(or "\\|")
|
|
(re nothing)
|
|
(re nothing)
|
|
(next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
|
|
(next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
|