From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Failed to create radio tables Date: Mon, 12 Jul 2010 11:16:42 +0200 Message-ID: <87tyo5f4at.wl%n.goaziou@gmail.com> References: <447823.81910.qm@web33204.mail.mud.yahoo.com> <653.1278790001@gamaville.dokosmarshall.org> <3414.1278798512@gamaville.dokosmarshall.org> <87wrt3ezvd.wl%n.goaziou@gmail.com> <27765.1278820940@gamaville.dokosmarshall.org> <87vd8mfsob.wl%n.goaziou@gmail.com> <623314F5-A65C-409D-B865-41D190F00D56@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/mixed; boundary="Multipart_Mon_Jul_12_11:16:41_2010-1" Return-path: Received: from [140.186.70.92] (port=39703 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OYF8B-000710-2q for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 05:16:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OYF84-0003Of-OH for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 05:16:52 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:41338) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OYF84-0003OT-KJ for emacs-orgmode@gnu.org; Mon, 12 Jul 2010 05:16:48 -0400 Received: by wyj26 with SMTP id 26so3559776wyj.0 for ; Mon, 12 Jul 2010 02:16:47 -0700 (PDT) In-Reply-To: <623314F5-A65C-409D-B865-41D190F00D56@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: nicholas.dokos@hp.com, emacs-orgmode@gnu.org, Angel Popov --Multipart_Mon_Jul_12_11:16:41_2010-1 Content-Type: text/plain; charset=US-ASCII Hello, >>>>> Carsten Dominik writes: > Corrected it where? In you branch where you are working on the list > code? Yes, on my branch. But here is the change applying to master. Regards, -- Nicolas --Multipart_Mon_Jul_12_11:16:41_2010-1 Content-Type: text/plain; type=patch; charset=US-ASCII Content-Disposition: attachment; filename="0001-Fix-regexp-for-org-list-send-list.patch" Content-Transfer-Encoding: 7bit >From bceff0485db6a7f8686c1024afe1810414f78a63 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 12 Jul 2010 11:12:57 +0200 Subject: [PATCH] Fix regexp for `org-list-send-list'. * lisp/org-list.el (org-list-send-list): regexp defining the start of a radio list is now on par with the one used for radio tables. --- lisp/org-list.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-list.el b/lisp/org-list.el index 2aacd09..0a51ca7 100644 --- a/lisp/org-list.el +++ b/lisp/org-list.el @@ -1277,7 +1277,7 @@ this list." (save-excursion (org-list-goto-true-beginning) (beginning-of-line 0) - (unless (looking-at "#\\+ORGLST: *SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?") + (unless (looking-at "[ \t]*#\\+ORGLST[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?") (if maybe (throw 'exit nil) (error "Don't know how to transform this list")))) -- 1.7.1.1 --Multipart_Mon_Jul_12_11:16:41_2010-1 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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 --Multipart_Mon_Jul_12_11:16:41_2010-1--