From: "Jakub Ječmínek" <jecminek.k@gmail.com>
To: Robert Pluim <rpluim@gmail.com>
Cc: 64205@debbugs.gnu.org
Subject: bug#64205: Fix missing cell border when using orgtbl-to-table.el function
Date: Wed, 21 Jun 2023 17:42:22 +0200 [thread overview]
Message-ID: <CAFBiod+x792uva0W3qEBok7+Dnt312DwvLngAbS=Ep7BX4_gpA@mail.gmail.com> (raw)
In-Reply-To: <87ttv0g7nk.fsf@gmail.com>
[-- Attachment #1.1: Type: text/plain, Size: 1315 bytes --]
You're right. There are more of these mistakes in the `org-table' file, for
example on line 1061, 1126 and 4666.
Jakub
st 21. 6. 2023 v 17:24 odesílatel Robert Pluim <rpluim@gmail.com> napsal:
> >>>>> On Wed, 21 Jun 2023 16:08:13 +0200, Jakub Ječmínek <
> jecminek.k@gmail.com> said:
> Jakub> diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
> Jakub> index 42f234790c5..6810fd8dc5a 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 (re-search-forward "-|" nil t)
> Jakub> + (replace-match "-+"))
> Jakub> + (goto-char (point-min))
> Jakub> + (while (re-search-forward "|-" nil t)
> Jakub> + (replace-match "+-"))
> Jakub> + (buffer-string)))
>
> Youʼre replacing fixed strings, so you could use `search-forward'
> instead of `re-search-forward'.
>
> Robert
> --
>
[-- Attachment #1.2: Type: text/html, Size: 1996 bytes --]
[-- Attachment #2: 0001-Fix-orgtbl-to-table.el-function-to-include-last-cell.patch --]
[-- Type: application/octet-stream, Size: 1239 bytes --]
From 61024954e75c4e71ed48c0566e02fb6e67b3e688 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jakub=20Je=C4=8Dm=C3=ADnek?= <jecminek.k@gmail.com>
Date: Wed, 21 Jun 2023 15:50:31 +0200
Subject: [PATCH] Fix orgtbl-to-table.el function to include last cell border
* lisp/org/org-table.el (orgtbl-to-table.el): Perform character
replacement in the temp buffer and fix missing cell border. (Bug #64205)
---
lisp/org/org-table.el | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el
index 42f234790c5..9a72eb5f314 100644
--- a/lisp/org/org-table.el
+++ b/lisp/org/org-table.el
@@ -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.
--
2.39.1
next prev parent reply other threads:[~2023-06-21 15:42 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 [this message]
[not found] ` <CAFBiodLYe+98=dYnvYCqxW0yY1feR8t_OKEH9VLUYXvLRXpEAA@mail.gmail.com>
2023-06-22 14:38 ` Robert Pluim
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='CAFBiod+x792uva0W3qEBok7+Dnt312DwvLngAbS=Ep7BX4_gpA@mail.gmail.com' \
--to=jecminek.k@gmail.com \
--cc=64205@debbugs.gnu.org \
--cc=rpluim@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.