From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ethan Ligon Subject: Re: Merge org-7.7 into emacs Date: Sun, 7 Aug 2011 18:59:38 +0000 (UTC) Message-ID: References: <87hb5tun28.fsf@mean.albasani.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq8Zn-0004qG-8E for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 14:59:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qq8Zm-0005l2-0P for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 14:59:55 -0400 Received: from lo.gmane.org ([80.91.229.12]:34359) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq8Zl-0005kh-Lc for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 14:59:53 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qq8Zj-0002VO-Gl for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 20:59:51 +0200 Received: from c-24-5-193-224.hsd1.ca.comcast.net ([24.5.193.224]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2011 20:59:51 +0200 Received: from ligon by c-24-5-193-224.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2011 20:59:51 +0200 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: emacs-orgmode@gnu.org Memnon Anon googlemail.com> writes: > > Hi, > > Just a heads up: > > http://permalink.gmane.org/gmane.emacs.devel/142944 > > I don't know anything about this, but maybe something can be said/done > about it while Bastien enjoys his vacation? > I'm afraid I'm mentioned twice. The first has to do with copyright assignment; I've begun the process described in org-contribute.org to assign copyright to the FSF. The second has to do with an incomplete ChangeLog entry for one of my patches (commit 49e6bc899758114d6d29e69a8f9e40798d26782b). I don't know the best to clean this up, since the ChangeLog is derived from the git log. But here's a ChangeLog entry that I think would have been valid: commit 49e6bc899758114d6d29e69a8f9e40798d26782b Author: Ethan Ligon Date: Sat Apr 9 18:39:35 2011 +0200 Fix for html & docbook export of description list items * lisp/org-html.el (org-html-export-list-line): Fix regexp for detecting description lists to allow "::" marker to be last visible element at end of line. * lisp/org-docbook.el (org-docbook-export-list-line): Fix regexp for detecting description lists to allow "::" marker to be last visible element at end of line. The problem is illustrated by the following example: * Illustration of bug in html export - This has a space after the colons :: so will work in latex and html - This doesn't have a space after the colons ::so is an invalid description item according to the org manual. Won't work in html or docbook. Will nevertheless work in latex, provided /first/ description item is valid. - Has a terminating space :: - So it works in both html and latex export! - Even though it's difficult to distinguish from the next example. - Lacks a terminating space :: - At present, *doesn't* work in html or docbook export, does in latex. This is the case that the following patch fixes. -Ethan