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
This commit is contained in:
Paul Eggert 2019-02-13 15:03:01 -08:00
parent b0e318d27f
commit 9a7519ce8f

View file

@ -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))