aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2019-02-13 15:03:01 -0800
committerPaul Eggert2019-02-13 15:03:30 -0800
commit9a7519ce8fa4b75e3b442977dec88bb38c2d9844 (patch)
tree967bb75e65011a1b48118e13b8333e3a24b17b7d
parentb0e318d27f10b820f1cfad6ea98793c11fc782a4 (diff)
downloademacs-9a7519ce8fa4b75e3b442977dec88bb38c2d9844.tar.gz
emacs-9a7519ce8fa4b75e3b442977dec88bb38c2d9844.zip
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
-rw-r--r--lisp/international/ucs-normalize.el4
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 @@
109 109
110(defconst ucs-normalize-version "1.2") 110(defconst ucs-normalize-version "1.2")
111 111
112(eval-when-compile (require 'cl-lib)) 112(eval-when-compile
113 (require 'cl-lib)
114 (require 'regexp-opt))
113 115
114(declare-function nfd "ucs-normalize" (char)) 116(declare-function nfd "ucs-normalize" (char))
115 117