]> git.eshelyaron.com Git - emacs.git/commitdiff
(bibtex-files): Fix customization type.
authorRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 Jan 2007 13:48:17 +0000 (13:48 +0000)
committerRoland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Sun, 21 Jan 2007 13:48:17 +0000 (13:48 +0000)
lisp/ChangeLog
lisp/textmodes/bibtex.el

index 3183a49e869c5891d12524141cad34dc806ce6ea..2898a8e54c84c2355ba6292f2d77b7ecf4e28ea2 100644 (file)
@@ -1,3 +1,7 @@
+2007-01-21  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
+
+       * textmodes/bibtex.el (bibtex-files): Fix customization type.
+
 2007-01-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
 
        * ps-print.el: Handle frame parameters (background and/or foreground
index 3adec5d7a0120c5e44c2082fbb02603a926cb2e2..06fa3a01186b1398b0304ef64c1a69956481cdda 100644 (file)
@@ -530,7 +530,8 @@ directories specified in `bibtex-file-path'.  If an element is a directory,
 check all BibTeX files in this directory.  If an element is the symbol
 `bibtex-file-path', check all BibTeX files in `bibtex-file-path'."
   :group 'bibtex
-  :type '(repeat file))
+  :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path)
+                         directory file)))
 
 (defvar bibtex-file-path (getenv "BIBINPUTS")
   "*Colon separated list of paths to search for `bibtex-files'.")