aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Winkler2007-01-21 13:48:17 +0000
committerRoland Winkler2007-01-21 13:48:17 +0000
commit238a5d6dc963d1f549682ba65e806bb9eba46c02 (patch)
treee41ed3bcb786157993f0bcb527f99963942e2e7a
parentc1a1c99425b3ac2f292c5423390e6b50534864e3 (diff)
downloademacs-238a5d6dc963d1f549682ba65e806bb9eba46c02.tar.gz
emacs-238a5d6dc963d1f549682ba65e806bb9eba46c02.zip
(bibtex-files): Fix customization type.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/textmodes/bibtex.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3183a49e869..2898a8e54c8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-01-21 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
2
3 * textmodes/bibtex.el (bibtex-files): Fix customization type.
4
12007-01-21 Vinicius Jose Latorre <viniciusjl@ig.com.br> 52007-01-21 Vinicius Jose Latorre <viniciusjl@ig.com.br>
2 6
3 * ps-print.el: Handle frame parameters (background and/or foreground 7 * 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,
530check all BibTeX files in this directory. If an element is the symbol 530check all BibTeX files in this directory. If an element is the symbol
531`bibtex-file-path', check all BibTeX files in `bibtex-file-path'." 531`bibtex-file-path', check all BibTeX files in `bibtex-file-path'."
532 :group 'bibtex 532 :group 'bibtex
533 :type '(repeat file)) 533 :type '(repeat (choice (const :tag "bibtex-file-path" bibtex-file-path)
534 directory file)))
534 535
535(defvar bibtex-file-path (getenv "BIBINPUTS") 536(defvar bibtex-file-path (getenv "BIBINPUTS")
536 "*Colon separated list of paths to search for `bibtex-files'.") 537 "*Colon separated list of paths to search for `bibtex-files'.")