diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-13 15:03:01 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-02-13 15:03:30 -0800 |
commit | 9a7519ce8fa4b75e3b442977dec88bb38c2d9844 (patch) | |
tree | 967bb75e65011a1b48118e13b8333e3a24b17b7d /lisp/international | |
parent | b0e318d27f10b820f1cfad6ea98793c11fc782a4 (diff) | |
download | emacs-9a7519ce8fa4b75e3b442977dec88bb38c2d9844.tar.gz |
Add missing dependency to ucs-normalize.el
* lisp/international/ucs-normalize.el:
Require regexp-opt when compiling. Problem reported by hx in:
https://lists.gnu.org/r/emacs-devel/2019-02/msg00334.html
Diffstat (limited to 'lisp/international')
-rw-r--r-- | lisp/international/ucs-normalize.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/international/ucs-normalize.el b/lisp/international/ucs-normalize.el index 9d55470d948..6f1e770c09c 100644 --- a/lisp/international/ucs-normalize.el +++ b/lisp/international/ucs-normalize.el @@ -109,7 +109,9 @@ (defconst ucs-normalize-version "1.2") -(eval-when-compile (require 'cl-lib)) +(eval-when-compile + (require 'cl-lib) + (require 'regexp-opt)) (declare-function nfd "ucs-normalize" (char)) |