aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/emacs-lisp/regexp-opt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/regexp-opt.el b/lisp/emacs-lisp/regexp-opt.el
index b1e132a76e3..cf6653046b5 100644
--- a/lisp/emacs-lisp/regexp-opt.el
+++ b/lisp/emacs-lisp/regexp-opt.el
@@ -236,7 +236,7 @@ CHARS should be a list of characters."
236 ;; The basic idea is to find character ranges. Also we take care in the 236 ;; The basic idea is to find character ranges. Also we take care in the
237 ;; position of character set meta characters in the character set regexp. 237 ;; position of character set meta characters in the character set regexp.
238 ;; 238 ;;
239 (let* ((charmap (make-char-table 'case-table)) 239 (let* ((charmap (make-char-table 'regexp-opt-charset))
240 (start -1) (end -2) 240 (start -1) (end -2)
241 (charset "") 241 (charset "")
242 (bracket "") (dash "") (caret "")) 242 (bracket "") (dash "") (caret ""))