From: Stefan Kangas Date: Thu, 4 Feb 2021 04:02:42 +0000 (+0100) Subject: Use require instead of boundp+load-library in double.el X-Git-Tag: emacs-28.0.90~3952 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7febfe1c2bad173a9d89a667738be081e74e639f;p=emacs.git Use require instead of boundp+load-library in double.el * lisp/double.el (isearch): Use require instead of boundp+load-library. --- 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)))