From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: [PATCH 3/3] Fix incorrect defcustom type. Date: Fri, 29 Apr 2011 21:33:48 -0400 Message-ID: <87fwp0ikub.fsf@fastmail.fm> References: <87k4ecikyk.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48698) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFz4A-0005iz-N7 for emacs-orgmode@gnu.org; Fri, 29 Apr 2011 21:33:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QFz49-00043y-LU for emacs-orgmode@gnu.org; Fri, 29 Apr 2011 21:33:50 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:60474) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QFz49-00043t-JK for emacs-orgmode@gnu.org; Fri, 29 Apr 2011 21:33:49 -0400 Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id 6CFCE20947 for ; Fri, 29 Apr 2011 21:33:49 -0400 (EDT) Received: from archdesk (67-197-161-170.dyn.comporium.net [67.197.161.170]) by mail.messagingengine.com (Postfix) with ESMTPSA id 2E08940B395 for ; Fri, 29 Apr 2011 21:33:49 -0400 (EDT) In-Reply-To: <87k4ecikyk.fsf@fastmail.fm> (Matt Lundin's message of "Fri, 29 Apr 2011 21:22:51 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode Matt Lundin writes: > * lisp/org-bibtex.el (org-bibtex-treat-headline-as-title): Fix > incorrect defcustom type. > --- > lisp/org-bibtex.el | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/lisp/org-bibtex.el b/lisp/org-bibtex.el > index b3d151c..8070755 100644 > --- a/lisp/org-bibtex.el > +++ b/lisp/org-bibtex.el > @@ -229,7 +229,7 @@ If an entry is missing a title property, use the headline text as > the property. If this value is t, `org-bibtex-check` will ignore > a missing title field." > :group 'org-bibtex > - :type 'string) > + :type 'boolean) > > (defcustom org-bibtex-export-arbitrary-fields nil > "When converting to bibtex allow fields not defined in `org-bibtex-fields'. This is a correction to my previous patch. I'd be happy to combine the two if that would be better. Thank,s, Matt