]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change to bibtex.el
authorBasil L. Contovounesios <contovob@tcd.ie>
Mon, 16 Nov 2020 23:16:23 +0000 (23:16 +0000)
committerBasil L. Contovounesios <contovob@tcd.ie>
Mon, 16 Nov 2020 23:31:04 +0000 (23:31 +0000)
* lisp/textmodes/bibtex.el (bibtex-unify-case-convert): Clarify
docstring and remove leading asterisk.  Use defcustom :local tag.

lisp/textmodes/bibtex.el

index b69d715faa718fb1b7b283e7d77db9fc3c52941f..d53cfa0b1ffc0dab230b5450541e48520ba3a609 100644 (file)
@@ -88,16 +88,16 @@ If this is a function, call it to generate the initial field text."
                  (const :tag "Default" t))
   :risky t)
 
-(defcustom bibtex-unify-case-convert 'identity
-  "*Function called when unifying case on entry and field names.
-This variable is buffer-local."
+(defcustom bibtex-unify-case-convert #'identity
+  "Function called when unifying case on entry and field names.
+It is called with one argument, the entry or field name."
   :version "28.1"
   :type '(choice (const :tag "Same case as in `bibtex-field-alist'" identity)
                 (const :tag "Downcase" downcase)
                 (const :tag "Capitalize" capitalize)
                 (const :tag "Upcase" upcase)
-                (function :tag "Conversion function")))
-(make-variable-buffer-local 'bibtex-unify-case-convert)
+                 (function :tag "Conversion function"))
+  :local t)
 
 (defcustom bibtex-user-optional-fields
   '(("annote" "Personal annotation (ignored)"))