[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#64205: Fix missing cell border when using orgtbl-to-table.el functio
From: |
Robert Pluim |
Subject: |
bug#64205: Fix missing cell border when using orgtbl-to-table.el function |
Date: |
Thu, 22 Jun 2023 16:38:48 +0200 |
>>>>> On Thu, 22 Jun 2023 16:33:02 +0200, Jakub Ječmínek <jecminek.k@gmail.com>
>>>>> said:
Jakub> Tags: patch
Jakub> I forgot to mention that I´ve fixed what you asked for, thank you for
Jakub> pointing that out.
Thanks for that. Eli, is this small enough to go into master without
paperwork?
Thanks
Robert
Jakub> See attached.
Jakub> Jakub
Jakub> From 61024954e75c4e71ed48c0566e02fb6e67b3e688 Mon Sep 17 00:00:00
2001
Jakub> From: =?UTF-8?q?Jakub=20Je=C4=8Dm=C3=ADnek?= <jecminek.k@gmail.com>
Jakub> Date: Wed, 21 Jun 2023 15:50:31 +0200
Jakub> Subject: [PATCH] Fix orgtbl-to-table.el function to include last
cell border
Jakub> * lisp/org/org-table.el (orgtbl-to-table.el): Perform character
Jakub> replacement in the temp buffer and fix missing cell border. (Bug
#64205)
Jakub> ---
Jakub> lisp/org/org-table.el | 10 +++++++---
Jakub> 1 file changed, 7 insertions(+), 3 deletions(-)
Jakub> diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
Jakub> index 42f234790c5..9a72eb5f314 100644
Jakub> --- a/lisp/org/org-table.el
Jakub> +++ b/lisp/org/org-table.el
Jakub> @@ -6132,9 +6132,13 @@ supported."
Jakub> (with-temp-buffer
Jakub> (insert (orgtbl-to-orgtbl table params))
Jakub> (org-table-align)
Jakub> - (replace-regexp-in-string
Jakub> - "-|" "-+"
Jakub> - (replace-regexp-in-string "|-" "+-" (buffer-substring 1
(buffer-size))))))
Jakub> + (goto-char (point-min))
Jakub> + (while (search-forward "-|" nil t)
Jakub> + (replace-match "-+"))
Jakub> + (goto-char (point-min))
Jakub> + (while (search-forward "|-" nil t)
Jakub> + (replace-match "+-"))
Jakub> + (buffer-string)))
Jakub> (defun orgtbl-to-unicode (table params)
Jakub> "Convert the `orgtbl-mode' TABLE into a table with unicode
characters.
Jakub> --
Jakub> 2.39.1
Robert
--