From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Roland Winkler Newsgroups: gmane.emacs.help Subject: Re: bibtex-validate-globally Date: Sun, 21 Jan 2007 14:26:20 +0100 Organization: FAU Erlangen-Nuernberg Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1169386866 7701 80.91.229.12 (21 Jan 2007 13:41:06 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 21 Jan 2007 13:41:06 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Jan 21 14:41:04 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H8cwS-0006Bx-Gv for geh-help-gnu-emacs@m.gmane.org; Sun, 21 Jan 2007 14:41:04 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H8cwR-0007yl-Vs for geh-help-gnu-emacs@m.gmane.org; Sun, 21 Jan 2007 08:41:03 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!news.dfncis.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-X-Trace: news.dfncis.de SDMWx4L57MRNHs7Q+/2nRAIFTSS/GA3Tkc8vfoko9HsvpD User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.90 (gnu/linux) Cancel-Lock: sha1:XSKbyjMtfY9P4ITGdSkPfOqG020= Original-Xref: shelby.stanford.edu gnu.emacs.help:144885 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:40489 Archived-At: Greg Bognar writes: > I have a question about the funtion bibtex-validate-globally. > According to its description, it should check for duplicate keys in > the variable bibtex-files. By default (in bibtex.el), this variable > is set to nil, so the function does not do anything. However, if I > set it to bibtex-file-path, whose value is given by (correctly) the > variable BIBINPUTS, it gives me a Wrong type argument: listp, [value > of bibtex-file-path]. The value of bibtex-files must be a list. One element of this list can be the *symbol* bibtex-file-path. So (setq bibtex-files '(bibtex-file-path)) is probably what you want. Roland