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:
parent
a9f9db68c1
commit
5ef692030f
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue