瀏覽代碼

ox-latex: Fix last commit

* lisp/ox-latex.el (org-latex--align-string): Fix typo in last commit.
Nicolas Goaziou 8 年之前
父節點
當前提交
c6b62fd648
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lisp/ox-latex.el

+ 2 - 2
lisp/ox-latex.el

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