From: Robert Pluim <rpluim@gmail.com>
To: "Jakub Ječmínek" <jecminek.k@gmail.com>
Cc: 64205@debbugs.gnu.org, Eli Zaretskii <eliz@gnu.org>
Subject: bug#64205: Fix missing cell border when using orgtbl-to-table.el function
Date: Thu, 22 Jun 2023 16:38:48 +0200 [thread overview]
Message-ID: <871qi3fton.fsf@gmail.com> (raw)
In-Reply-To: <CAFBiodLYe+98=dYnvYCqxW0yY1feR8t_OKEH9VLUYXvLRXpEAA@mail.gmail.com> ("Jakub Ječmínek"'s message of "Thu, 22 Jun 2023 16:33:02 +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
--
next prev parent reply other threads:[~2023-06-22 14:38 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-20 21:57 bug#64205: Fix missing border cell when using orgtbl-to-table.el function Jakub Ječmínek
2023-06-21 12:45 ` Robert Pluim
2023-06-21 14:08 ` bug#64205: Fix missing cell border " Jakub Ječmínek
2023-06-21 15:24 ` Robert Pluim
2023-06-21 15:42 ` Jakub Ječmínek
[not found] ` <CAFBiodLYe+98=dYnvYCqxW0yY1feR8t_OKEH9VLUYXvLRXpEAA@mail.gmail.com>
2023-06-22 14:38 ` Robert Pluim [this message]
2023-06-22 15:15 ` Eli Zaretskii
2023-06-22 15:43 ` Robert Pluim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871qi3fton.fsf@gmail.com \
--to=rpluim@gmail.com \
--cc=64205@debbugs.gnu.org \
--cc=eliz@gnu.org \
--cc=jecminek.k@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.