Sfoglia il codice sorgente

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 anni fa
parent
commit
96a9542ae1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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