]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in the doc string of 'regex-opt'
authorEli Zaretskii <eliz@gnu.org>
Fri, 22 Feb 2019 08:12:14 +0000 (10:12 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 22 Feb 2019 08:12:14 +0000 (10:12 +0200)
* lisp/emacs-lisp/regexp-opt.el (regexp-opt): Fix example in
the doc string.  (Bug#34596)

lisp/emacs-lisp/regexp-opt.el

index 152dca2309ddb25d66063c528dddb157f402145d..63786c1508c9297b6d2fa1448c026a82019641d7 100644 (file)
@@ -121,9 +121,9 @@ than that of a simplified version:
                 ((eq paren \\='symbols) \\='(\"\\\\_<\\\\(\" . \"\\\\)\\\\_>\"))
                 ((null paren)          \\='(\"\\\\(?:\" . \"\\\\)\"))
                 (t                       \\='(\"\\\\(\" . \"\\\\)\")))))
-     (concat (car paren)
+     (concat (car parens)
              (mapconcat \\='regexp-quote strings \"\\\\|\")
-             (cdr paren))))"
+             (cdr parens))))"
   (save-match-data
     ;; Recurse on the sorted list.
     (let* ((max-lisp-eval-depth 10000)