diff options
| -rw-r--r-- | doc/lispref/searching.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 2e951d0d5d7..b182fae5955 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi | |||
| @@ -1013,9 +1013,9 @@ more efficient than that of a simplified version: | |||
| 1013 | ((eq paren 'symbols) '("\\_<\\(" . "\\)\\_>")) | 1013 | ((eq paren 'symbols) '("\\_<\\(" . "\\)\\_>")) |
| 1014 | ((null paren) '("\\(?:" . "\\)")) | 1014 | ((null paren) '("\\(?:" . "\\)")) |
| 1015 | (t '("\\(" . "\\)"))))) | 1015 | (t '("\\(" . "\\)"))))) |
| 1016 | (concat (car paren) | 1016 | (concat (car parens) |
| 1017 | (mapconcat 'regexp-quote strings "\\|") | 1017 | (mapconcat 'regexp-quote strings "\\|") |
| 1018 | (cdr paren)))) | 1018 | (cdr parens)))) |
| 1019 | @end example | 1019 | @end example |
| 1020 | @end defun | 1020 | @end defun |
| 1021 | 1021 | ||