>From d1dc424721e5d13fc1ddf69ab4057517e4e77c64 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 13 Feb 2019 15:03:01 -0800 Subject: [PATCH] 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 --- lisp/international/ucs-normalize.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/international/ucs-normalize.el b/lisp/international/ucs-normalize.el index 9d55470d94..6f1e770c09 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)) -- 2.20.1