comparison lisp/textmodes/bibtex.el @ 90737:95d0cdf160ea

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 586-614) - Update from CVS - Update from erc--emacs--22 - Merge from gnus--rel--5.10 - Merge from erc--main--0 - Make byte compiler correctly write circular constants * gnus--rel--5.10 (patch 186-196) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-162
author Miles Bader <miles@gnu.org>
date Fri, 26 Jan 2007 06:16:11 +0000
parents 6588c6259dfb 2600e61a031f
children e6fdae9180d4
comparison
equal deleted inserted replaced
90736:ef1369583937 90737:95d0cdf160ea
1 ;;; bibtex.el --- BibTeX mode for GNU Emacs 1 ;;; bibtex.el --- BibTeX mode for GNU Emacs
2 2
3 ;; Copyright (C) 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 3 ;; Copyright (C) 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002,
4 ;; 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 4 ;; 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5 5
6 ;; Author: Stefan Schoef <schoef@offis.uni-oldenburg.de> 6 ;; Author: Stefan Schoef <schoef@offis.uni-oldenburg.de>
7 ;; Bengt Martensson <bengt@mathematik.uni-Bremen.de> 7 ;; Bengt Martensson <bengt@mathematik.uni-Bremen.de>
8 ;; Marc Shapiro <marc.shapiro@acm.org> 8 ;; Marc Shapiro <marc.shapiro@acm.org>
9 ;; Mike Newton <newton@gumby.cs.caltech.edu> 9 ;; Mike Newton <newton@gumby.cs.caltech.edu>
528 List elements can be absolute file names or file names relative to the 528 List elements can be absolute file names or file names relative to the
529 directories specified in `bibtex-file-path'. If an element is a directory, 529 directories specified in `bibtex-file-path'. If an element is a directory,
530 check all BibTeX files in this directory. If an element is the symbol 530 check 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'.")
537 538
538 (defcustom bibtex-help-message t 539 (defcustom bibtex-help-message t