From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel E. Doherty Subject: Table Alignment in presence of \vert{} Date: Sun, 07 Apr 2013 08:00:54 -0500 Message-ID: <874nfijy0p.wl%ded-law@ddoherty.net> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([208.118.235.92]:41089) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOpDX-0003Vp-No for emacs-orgmode@gnu.org; Sun, 07 Apr 2013 09:01:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UOpDT-0004ha-5d for emacs-orgmode@gnu.org; Sun, 07 Apr 2013 09:01:07 -0400 Received: from mail-pd0-f176.google.com ([209.85.192.176]:56471) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UOpDS-0004gu-UN for emacs-orgmode@gnu.org; Sun, 07 Apr 2013 09:01:03 -0400 Received: by mail-pd0-f176.google.com with SMTP id r11so2743510pdi.35 for ; Sun, 07 Apr 2013 06:01:01 -0700 (PDT) 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: Org-mode List All, I am writing an app for bookkeeping that uses regexp's in org tables. They are working great except that they always come up misaligned when the regexp has a \vert{} in it for alternation. Also when tabbing through the file the alignment gets confused as well and appears to miscalculate the length of the entry, taking display of \vert into account. Try tabbing through the following: #+TBLNAME: modes |----------------+-------------------------------------------------| | Name | Matcher | |----------------+-------------------------------------------------| | ATM Withdrawal | /atm withdrawal/ | | Auto Debit | /(ach\s+(debit\vert{}item))\vert{}transfer fee/ | | Bank Item | /interest payment\vert{}atm\s+.*fee/ | | Check | /check image\vert{}^check/ | | Debit Card | /visa check card\vert{}point of sale/ | | Transfer | /(online bnkg\vert{}od coverage) trans(fer)?/ | |----------------+-------------------------------------------------| Maybe this is a known problem, but I thought I would report it since it comes up alot for me. My org-version is 7.8.11 and Emacs 24.2.1 Thanks