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:
parent
b0e318d27f
commit
9a7519ce8f
1 changed files with 3 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue