]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix orgtbl-to-table.el function to include last cell border
authorJakub Ječmínek <jecminek.k@gmail.com>
Wed, 21 Jun 2023 13:50:31 +0000 (15:50 +0200)
committerRobert Pluim <rpluim@gmail.com>
Thu, 22 Jun 2023 15:38:56 +0000 (17:38 +0200)
* lisp/org/org-table.el (orgtbl-to-table.el): Perform character
replacement in the temp buffer and fix missing cell border.  (Bug#64205)

Copyright-paperwork-exempt: yes

lisp/org/org-table.el

index 42f234790c57ba63b417c6079e0dbb2252011d3b..9a72eb5f314ac67ba792e4d57a4ef3db763ce452 100644 (file)
@@ -6132,9 +6132,13 @@ supported."
   (with-temp-buffer
     (insert (orgtbl-to-orgtbl table params))
     (org-table-align)
-    (replace-regexp-in-string
-     "-|" "-+"
-     (replace-regexp-in-string "|-" "+-" (buffer-substring 1 (buffer-size))))))
+    (goto-char (point-min))
+    (while (search-forward "-|" nil t)
+      (replace-match "-+"))
+    (goto-char (point-min))
+    (while (search-forward "|-" nil t)
+      (replace-match "+-"))
+    (buffer-string)))
 
 (defun orgtbl-to-unicode (table params)
   "Convert the `orgtbl-mode' TABLE into a table with unicode characters.