소스 검색

org-element: Remove spurious blank when interpreting a row

* lisp/org-element.el (org-element-table-row-interpreter): Remove
  spurious white space.
Nicolas Goaziou 8 년 전
부모
커밋
96a9542ae1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/org-element.el

+ 1 - 1
lisp/org-element.el

@@ -2591,7 +2591,7 @@ containing `:begin', `:end', `:contents-begin', `:contents-end',
   "Interpret TABLE-ROW element as Org syntax.
 CONTENTS is the contents of the table row."
   (if (eq (org-element-property :type table-row) 'rule) "|-"
-    (concat "| " contents)))
+    (concat "|" contents)))
 
 
 ;;;; Verse Block