ox-latex: Fix last commit

* lisp/ox-latex.el (org-latex--align-string): Fix typo in last commit.
This commit is contained in:
Nicolas Goaziou 2017-03-27 14:01:32 +02:00
parent 0fda6465af
commit c6b62fd648
1 changed files with 2 additions and 2 deletions

View File

@ -3128,8 +3128,8 @@ centered."
(cl-case (org-export-table-cell-alignment cell info) (cl-case (org-export-table-cell-alignment cell info)
(left "l") (left "l")
(right "r") (right "r")
(center "c")) (center "c")))
align)) align)
(when (memq 'right borders) (push "|" align)))) (when (memq 'right borders) (push "|" align))))
info) info)
(apply 'concat (nreverse align))))) (apply 'concat (nreverse align)))))