aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRoland Winkler <[email protected]>2007-01-21 13:48:17 +0000
committerRoland Winkler <[email protected]>2007-01-21 13:48:17 +0000
commit238a5d6dc963d1f549682ba65e806bb9eba46c02 (patch)
treee41ed3bcb786157993f0bcb527f99963942e2e7a /lisp/textmodes
parentc1a1c99425b3ac2f292c5423390e6b50534864e3 (diff)
(bibtex-files): Fix customization type.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/bibtex.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/bibtex.el b/lisp/textmodes/bibtex.el
index 3adec5d7a0..06fa3a0118 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'.")