From: Roland Winkler Date: Sun, 21 Jan 2007 13:48:17 +0000 (+0000) Subject: (bibtex-files): Fix customization type. X-Git-Tag: emacs-pretest-22.0.93~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=238a5d6dc963d1f549682ba65e806bb9eba46c02;p=emacs.git (bibtex-files): Fix customization type. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3183a49e869..2898a8e54c8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-01-21 Roland Winkler + + * textmodes/bibtex.el (bibtex-files): Fix customization type. + 2007-01-21 Vinicius Jose Latorre * ps-print.el: Handle frame parameters (background and/or foreground diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el index 3adec5d7a01..06fa3a01186 100644 --- a/lisp/textmodes/bibtex.el +++ b/lisp/textmodes/bibtex.el @@ -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'.")