From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: [bug] Can't find remote table when name is downcased Date: Mon, 02 Apr 2012 17:05:22 +0200 Message-ID: <87aa2uxjgt.fsf@gnu.org> References: <80398mutmp.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:34690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEinn-0005ZX-Ac for emacs-orgmode@gnu.org; Mon, 02 Apr 2012 11:04:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SEinh-00022W-2U for emacs-orgmode@gnu.org; Mon, 02 Apr 2012 11:04:14 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:50488) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEing-00022M-PY for emacs-orgmode@gnu.org; Mon, 02 Apr 2012 11:04:08 -0400 Received: by wibhj13 with SMTP id hj13so2174203wib.12 for ; Mon, 02 Apr 2012 08:04:06 -0700 (PDT) In-Reply-To: <80398mutmp.fsf@somewhere.org> (Sebastien Vauban's message of "Mon, 02 Apr 2012 15:54:06 +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: Sebastien Vauban Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi Sébastien, "Sebastien Vauban" writes: > The error > > if: Can't find remote table "onsite" > > is reported if the table name is in downcase (as in the following > example). Can you try this patch and report? Thanks! --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=fix-tbl-line-downcase.patch diff --git a/lisp/org-table.el b/lisp/org-table.el index ae12cee..19367b5 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -3826,7 +3826,7 @@ Use COMMAND to do the motion, repeat if necessary to end up in a data line." "Local variable used by `orgtbl-mode'.") (defconst orgtbl-line-start-regexp - "[ \t]*\\(|\\|#\\+\\(TBLFM\\|ORGTBL\\|TBLNAME\\):\\)" + "[ \t]*\\(|\\|#\\+\\(tblfm\\|orgtbl\\|tblname\\):\\)" "Matches a line belonging to an orgtbl.") (defconst orgtbl-extra-font-lock-keywords --=-=-= Content-Type: text/plain -- Bastien --=-=-=--