summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-04-01 10:34:39 +0200
committerStefan Kangas <stefan@marxist.se>2021-04-01 10:34:39 +0200
commit1f790dfe90d914e02182fc4abab6623d9c966ff6 (patch)
tree9ccda4fbb803eb308cb8da6f94b44ce52c67600a
parent41f37c8c828a1c023acc91026a3d0dc76e0c1cd3 (diff)
downloademacs-1f790dfe90d914e02182fc4abab6623d9c966ff6.tar.gz
Use lexical-binding in isearchb.el
* lisp/isearchb.el: Use lexical-binding. Remove redundant :group args.
-rw-r--r--lisp/isearchb.el8
1 files 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)