]> git.eshelyaron.com Git - emacs.git/commitdiff
Use lexical-binding in bib-mode.el
authorStefan Kangas <stefan@marxist.se>
Wed, 10 Feb 2021 03:42:37 +0000 (04:42 +0100)
committerStefan Kangas <stefan@marxist.se>
Wed, 10 Feb 2021 05:36:09 +0000 (06:36 +0100)
* lisp/textmodes/bib-mode.el: Use lexical-binding.  Remove
redundant :group args.

lisp/textmodes/bib-mode.el

index 1e22287d32e123142e06ff00ca05f3cc43cec22b..ec21987bbf5ebca95d4a7992cef26b65ff9f8bb2 100644 (file)
@@ -1,4 +1,4 @@
-;;; bib-mode.el --- major mode for editing bib files
+;;; bib-mode.el --- major mode for editing bib files  -*- lexical-binding: t -*-
 
 ;; Copyright (C) 1989, 2001-2021 Free Software Foundation, Inc.
 
 
 (defcustom bib-file "~/my-bibliography.bib"
   "Default name of file used by `addbib'."
-    :type 'file
-    :group 'bib)
+    :type 'file)
 
 (defcustom unread-bib-file "~/to-be-read.bib"
    "Default name of file used by `unread-bib' in Bib mode."
-   :type 'file
-   :group 'bib)
+   :type 'file)
 
 (defvar bib-mode-map
   (let ((map (make-sparse-keymap)))
@@ -138,8 +136,7 @@ with the cdr.")
 
 (defcustom bib-auto-capitalize t
   "True to automatically capitalize appropriate fields in Bib mode."
-  :type 'boolean
-  :group 'bib)
+  :type 'boolean)
 
 (defconst bib-capitalized-fields "%[AETCBIJR]")