From 1f790dfe90d914e02182fc4abab6623d9c966ff6 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 1 Apr 2021 10:34:39 +0200 Subject: [PATCH] Use lexical-binding in isearchb.el * lisp/isearchb.el: Use lexical-binding. Remove redundant :group args. --- lisp/isearchb.el | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lisp/isearchb.el b/lisp/isearchb.el index 3713879e3b6..67020b76ecb 100644 --- a/lisp/isearchb.el +++ b/lisp/isearchb.el @@ -1,4 +1,4 @@ -;;; isearchb --- a marriage between iswitchb and isearch +;;; isearchb.el --- a marriage between iswitchb and isearch -*- lexical-binding: t -*- ;; Copyright (C) 2004-2021 Free Software Foundation, Inc. @@ -89,13 +89,11 @@ "Number of idle seconds before isearchb turns itself off. If nil, don't use a timeout." :type '(choice (integer :tag "Seconds") - (const :tag "Disable" nil)) - :group 'isearchb) + (const :tag "Disable" nil))) (defcustom isearchb-show-completions t "If non-nil, show possible completions in the minibuffer." - :type 'boolean - :group 'isearchb) + :type 'boolean) (defvar isearchb-start-buffer nil) (defvar isearchb-last-buffer nil) -- 2.39.2