From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Sperber Subject: PATCH[3/3]: org-element.el: Remove illegal t clause in case Date: Thu, 30 Aug 2012 09:56:30 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47210) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6zuI-0007S1-RG for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:15:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T6zuC-0002A8-2a for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:15:18 -0400 Received: from plane.gmane.org ([80.91.229.3]:34271) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T6zuB-00029G-RG for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 04:15:11 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1T6zkO-0002jv-Cv for emacs-orgmode@gnu.org; Thu, 30 Aug 2012 10:05:04 +0200 Received: from 37.247.80.143 ([37.247.80.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Aug 2012 10:05:04 +0200 Received: from sperber by 37.247.80.143 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Aug 2012 10:05:04 +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 --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit This patch (written by Mats Lidell) fixes an error we saw on XEmacs, but we think it's a bug on GNU Emacs, too. -- Cheers =8-} Mike Friede, Völkerverständigung und überhaupt blabla --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0003-org-element.el-Remove-illegal-t-clause-in-case.patch >From 516456845f93d2ef7f05c6f7789f8ff4e368f6f6 Mon Sep 17 00:00:00 2001 From: Mats Lidell Date: Sun, 26 Aug 2012 22:24:15 +0200 Subject: [PATCH 3/3] org-element.el: Remove illegal t clause in case * lisp/org-element.el (org-element-paragraph-separate): Remove illegal t clause in case. --- lisp/org-element.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-element.el b/lisp/org-element.el index 3bf217d..4aeb74c 100644 --- a/lisp/org-element.el +++ b/lisp/org-element.el @@ -149,7 +149,7 @@ "\\|" ;; Lists. (let ((term (case org-plain-list-ordered-item-terminator - (t "[.)]") (?\) ")") (?. "\\.") (otherwise "[.)]"))) + (?\) ")") (?. "\\.") (otherwise "[.)]"))) (alpha (and org-alphabetical-lists "\\|[A-Za-z]"))) (concat "\\(?:[-+*]\\|\\(?:[0-9]+" alpha "\\)" term "\\)" "\\(?:[ \t]\\|$\\)")) -- 1.7.0.5 --=-=-=--