From 7febfe1c2bad173a9d89a667738be081e74e639f Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 4 Feb 2021 05:02:42 +0100 Subject: [PATCH] Use require instead of boundp+load-library in double.el * lisp/double.el (isearch): Use require instead of boundp+load-library. --- lisp/double.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/double.el b/lisp/double.el index d099fd06422..7bc8d92e600 100644 --- a/lisp/double.el +++ b/lisp/double.el @@ -95,8 +95,7 @@ but not `C-u X' or `ESC X' since the X is not the prefix key." (global-set-key [ignore] 'ignore) -(or (boundp 'isearch-mode-map) - (load-library "isearch")) +(require 'isearch) (define-key isearch-mode-map [ignore] (lambda () (interactive) (isearch-update))) -- 2.39.2