From 5ef692030f0f4f64fc1848b5016b052e5e3b9a39 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 7 Jan 2012 18:26:31 +0100 Subject: [PATCH] org-export: Fix small bug * contrib/lisp/org-export.el (org-export-table-format-info): Fix confusion between "\" which means nothing in special columns, and "/". --- contrib/lisp/org-export.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 9b904afca..3c4ed0aee 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -2686,8 +2686,8 @@ Return a plist whose properties and values are: (setq special-column-p (cond ((not special-column-p) nil) - ((string-match "^[ \t]*| *\\\\?\\([\#!$*_^]\\) *|" - row) 'special) + ((string-match "^[ \t]*| *\\\\?\\([/#!$*_^]\\) *|" row) + 'special) ((string-match "^[ \t]*| +|" row) special-column-p)))) (cond ;; Read forced alignment and width information, if any,