Prechádzať zdrojové kódy

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
  "/".
Nicolas Goaziou 13 rokov pred
rodič
commit
5ef692030f
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      contrib/lisp/org-export.el

+ 2 - 2
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,