From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Grothe Subject: Re: Org 8 Bug in interactive formula editing mode? Date: Mon, 21 Jul 2014 18:14:58 +0200 Message-ID: <20140721181458.7e8004db@rudi> References: <20140721090925.73e90201@rudi> <20140721155003.52846bb4@rudi> <87k3763jcc.fsf@alphaville.bos.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46931) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9GF5-0004nz-5P for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:15:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9GEx-0006Rq-Mu for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:15:11 -0400 Received: from mx02.posteo.de ([89.146.194.165]:37222 helo=posteo.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9GEx-0006Pv-Hx for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:15:03 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTP id DC201258D267 for ; Mon, 21 Jul 2014 18:15:01 +0200 (CEST) Received: from posteo.de ([10.125.125.178]) (using TLS) by localhost (amavis1.posteo.de [10.125.125.165]) (amavisd-new, port 10026) with ESMTPS id 1A1rRza2_EFY for ; Mon, 21 Jul 2014 18:15:00 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTPSA id 647742C02A5 for ; Mon, 21 Jul 2014 18:15:00 +0200 (CEST) In-Reply-To: <87k3763jcc.fsf@alphaville.bos.redhat.com> 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 Nick, > Nope - I tried to reproduce it with latest (both master and maint) and > could not, so I suspect an error in your configuration. I think I found the problem, it happened after I patched the file with your patch from the thread above: ##### diff --git a/lisp/org-table.el b/lisp/org-table.el index d7ef615..864493e 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -447,8 +447,8 @@ available parameters." "Check if the table has a marking column. If yes remove the column and the special lines." (let ((special (if maybe-quoted - "^[ \t]*| *\\\\?[\#!$*_^/ ] *|" - "^[ \t]*| *[\#!$*_^/ ] *|")) + "^[ \t]*| *\\\\?[\#!$*_^/] *|" + "^[ \t]*| *[\#!$*_^/] *|")) (ignore (if maybe-quoted "^[ \t]*| *\\\\?[!$_^/] *|" "^[ \t]*| *[!$_^/] *|"))) #### I tried to recover the saved file table.el.orig and everything works fine, so it is something with the patch, right? What did I wrong ?? Regards Th. Grothe