From mboxrd@z Thu Jan 1 00:00:00 1970 From: Puneeth Subject: Re: export TODO keyword Date: Mon, 16 Aug 2010 21:19:32 +0530 Message-ID: References: <1FFE9A72-8651-4461-B8C5-C54B7F94569A@gmail.com> <87r5hyir9n.fsf@gmx.de> <30121.1281973048@gamaville.dokosmarshall.org> <4EF8A438-2817-4094-BF98-DC78F4341F0A@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from [140.186.70.92] (port=59661 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ol1wh-0000RG-V9 for emacs-orgmode@gnu.org; Mon, 16 Aug 2010 11:49:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ol1wg-0001gk-Fy for emacs-orgmode@gnu.org; Mon, 16 Aug 2010 11:49:55 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:61120) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ol1wg-0001gY-BN for emacs-orgmode@gnu.org; Mon, 16 Aug 2010 11:49:54 -0400 Received: by ewy28 with SMTP id 28so2595738ewy.0 for ; Mon, 16 Aug 2010 08:49:52 -0700 (PDT) In-Reply-To: <4EF8A438-2817-4094-BF98-DC78F4341F0A@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: Rares Pop , nicholas.dokos@hp.com, emacs-orgmode@gnu.org On Mon, Aug 16, 2010 at 9:12 PM, Carsten Dominik wrote: > Hi everyone, > > this has now been a 10-message thread about a bug that was fixed a while > ago. > Please, if you submit a bug report, one part of your required homework > is to try with the latest version of Org-mode available before claiming > there is a bug. Sure! I think this should go onto org-mode site too - http://orgmode.org/org.html#Feedback > > Thanks! > > - Carsten > > On Aug 16, 2010, at 5:37 PM, Nick Dokos wrote: > >> Rares Pop wrote: >> >>> From what I found so far there are no macros involved here. >>> >>> I'll perform the upgrade to the latest version and see how if it's fixe= d. >>> >> >> It *was* a bug: it was fixed by this commit: >> >> ,---- >> | >> | commit be232c4c212283ca6311cfe35c0bae7719146e55 >> | Author: Carsten Dominik >> | Date: =C2=A0 Thu May 13 08:47:26 2010 +0200 >> | >> | =C2=A0 =C2=A0 LaTeX export: Fix TODO keyword export >> | >> | diff --git a/lisp/ChangeLog b/lisp/ChangeLog >> | index 45c9ec7..04c9ecb 100644 >> | --- a/lisp/ChangeLog >> | +++ b/lisp/ChangeLog >> | @@ -1,3 +1,8 @@ >> | +2010-05-13 =C2=A0Carsten Dominik =C2=A0 >> | + >> | + =C2=A0 =C2=A0 * org-latex.el (org-export-latex-keywords-maybe): Prot= ect the >> | + =C2=A0 =C2=A0 TODO markup. >> | + >> | =C2=A02010-05-13 =C2=A0Mikael Fornius =C2=A0 >> | >> | =C2=A0 =C2=A0 =C2=A0 * org-habit.el (org-habit-build-graph): Help-echo= date when >> | diff --git a/lisp/org-latex.el b/lisp/org-latex.el >> | index e3544bf..afa0be2 100644 >> | --- a/lisp/org-latex.el >> | +++ b/lisp/org-latex.el >> | @@ -1289,7 +1289,8 @@ links, keywords, lists, tables, fixed-width" >> | =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 (cdr todo-markup) (car todo-markup))) >> | =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(t (cdr = (or (assoc (match-string 1) todo-markup) >> | =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(car todo-markup)))))) >> | - =C2=A0 =C2=A0 (replace-match (format fmt (match-string 1)) t t))) >> | + =C2=A0 =C2=A0 (replace-match (org-export-latex-protect-string >> | + =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 (format fmt (match-string 1))) t t))) >> | =C2=A0 =C2=A0 =C2=A0;; convert priority string >> | =C2=A0 =C2=A0 =C2=A0(when (re-search-forward "\\[\\\\#.\\]" nil t) >> | =C2=A0 =C2=A0 =C2=A0 =C2=A0(if (plist-get remove-list :priority) >> `---- >> >> so an upgrade should fix it. > > - Carsten > > > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode > --=20 Puneeth