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
  "/".
This commit is contained in:
Nicolas Goaziou 2012-01-07 18:26:31 +01:00
parent a9f9db68c1
commit 5ef692030f
1 changed files with 2 additions and 2 deletions

View File

@ -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,