From: Tak Kunihiro <homeros.misasa@gmail.com>
To: Tak Kunihiro <homeros.misasa@gmail.com>
Cc: tkk@misasa.okayama-u.ac.jp, 45915@debbugs.gnu.org
Subject: bug#45915: 28.0.90; deletechar distorts org-table
Date: Tue, 07 Dec 2021 17:43:40 +0900 [thread overview]
Message-ID: <m1zgpc7qkj.fsf_-_@misasa.okayama-u.ac.jp> (raw)
In-Reply-To: <m135p8pey0.fsf_-_@misasa.okayama-u.ac.jp> (Tak Kunihiro's message of "Mon, 11 Oct 2021 09:45:11 +0900")
I confirm that there still is the problem with org-table on Emacs
28.0.90 pretest with org-version 9.5.1.
Here is a recipe to reproduce the problem. I still have to stick to
26.3.
1. emacs -Q
2. (defun emacs-bug-reproduce-45915 () ...)
3. (call-interactively 'emacs-bug-reproduce-45915)
(defun emacs-bug-reproduce-45915 ()
"Reproduce bug#45915."
;; (gnus-read-ephemeral-emacs-bug-group 45915)
(interactive)
(with-current-buffer (get-buffer-create "*temp buffer*")
(erase-buffer)
(require 'org)
(orgtbl-mode 1)
(insert (format "emacs-version: %s, org-version: %s\n" emacs-version org-version))
(insert "| | rownames |
| / | <l> |
|---+----------|
| | a |"))
(switch-to-buffer-other-window "*temp buffer*")
(execute-kbd-macro (kbd "M-< C-n C-n C-n C-n C-f C-f"))
(message "I will hit S-<return>.")
(sit-for 2)
(execute-kbd-macro (kbd "S-<return>"))
(message "I will hit <delete>.")
(sit-for 2)
(execute-kbd-macro (kbd "<delete>"))
(message "I will call previous-line.")
(sit-for 2)
(call-interactively 'previous-line))
> I confirm that there is still problem with org-table
> on Emacs 29.0.50 with org-version 9.5.
>
>>>> I confirm that there still is following problem on 27.1.91.
>>>> Could someone take a look and show me work around?
>>>
>>> I cannot reproduce this with latest Org stable version 9.4.5.
>>>
>>> Can you try again and report?
>>
>> I downloaded Org 9.4.5 and reproduced the problem on 26.3, 27.2,
>> and 28.0.50. Here is a recipe again.
>>
>>> On certain condition, typing <deletechar> distorts alignment of
>>> a table. Then, typing <up> moves point to previous line but far
>>> right position (column 14 instead of column 2).
>>>
>>> | | rownames | | | rownames |
>>> | / | <l> | | / | <l> |
>>> |---+----------| -> |---+----------|
>>> | / | a | | | a |
>>>
>>> Here is a recipe to reproduce the glitch started from emcas -Q.
>>>
>>> 1. Create a buffer with (text-mode) and yank following table.
>>>
>>> | | rownames |
>>> | / | <l> |
>>> |---+----------|
>>> | | a |
>>>
>>> 2. (progn (require 'org) (call-interactively 'orgtbl-mode))
>>> 3. Move point to the first column and the third line with letter 'a'.
>>> 4. Hit <S-return>.
>>> 5. Hit <deletechar>.
>>> 6. Hit <up>.
next prev parent reply other threads:[~2021-12-07 8:44 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-16 8:01 bug#45915: 27.1; deletechar distorts org-table Tak Kunihiro
2021-01-31 2:54 ` bug#45915: 27.1.91; " Tak Kunihiro
2021-04-28 6:03 ` Bastien
2021-04-28 8:36 ` bug#45915: 27.2; " Tak Kunihiro
2021-10-11 0:45 ` bug#45915: 29.0.50; " Tak Kunihiro
2021-12-07 8:43 ` Tak Kunihiro [this message]
2021-12-19 12:53 ` bug#45915: 28.0.90; " Ihor Radchenko
2021-12-29 6:28 ` Tak Kunihiro
2022-04-30 4:00 ` Ihor Radchenko
2022-05-23 9:26 ` Tak Kunihiro
2022-05-23 9:55 ` Ihor Radchenko
2022-06-18 6:20 ` Ihor Radchenko
2022-04-30 4:00 ` Ihor Radchenko
2022-07-13 10:17 ` bug#45915: 28.1; delete-char deletes two letters Tak Kunihiro
2022-09-15 9:30 ` bug#45915: 28.2; " Tak Kunihiro
2022-09-16 3:59 ` Ihor Radchenko
2022-09-17 3:48 ` Tak Kunihiro
2022-09-17 6:38 ` Eli Zaretskii
2022-09-17 8:20 ` Tak Kunihiro
2022-09-17 11:17 ` Eli Zaretskii
2022-09-18 5:44 ` Tak Kunihiro
2022-09-18 5:56 ` Eli Zaretskii
2022-09-18 8:05 ` Eli Zaretskii
2022-09-19 1:02 ` Tak Kunihiro
2022-09-22 12:03 ` Ihor Radchenko
2022-09-22 12:46 ` Eli Zaretskii
2022-09-22 12:46 ` Eli Zaretskii
2022-09-22 21:36 ` Tak Kunihiro
2022-09-22 21:36 ` Tak Kunihiro
2022-09-23 6:02 ` Eli Zaretskii
2022-09-23 6:02 ` Eli Zaretskii
2022-09-22 12:03 ` Ihor Radchenko
2022-09-19 1:24 ` Tak Kunihiro
2022-09-19 13:27 ` Eli Zaretskii
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=m1zgpc7qkj.fsf_-_@misasa.okayama-u.ac.jp \
--to=homeros.misasa@gmail.com \
--cc=45915@debbugs.gnu.org \
--cc=tkk@misasa.okayama-u.ac.jp \
/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.