0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 21:37:50 +00:00

Merge branch 'bugfix'

This commit is contained in:
Ihor Radchenko 2024-04-12 21:03:36 +03:00
commit 08c047a507
No known key found for this signature in database
GPG key ID: 6470762A7DA11D8B

View file

@ -494,6 +494,11 @@ This may be useful when columns have been shrunk."
(redisplay)
(let* ((ws (window-start))
(beg (save-excursion
;; Check table at window start, not at point.
;; Point might be after the table, or at
;; another table located below the one visible
;; on top.
(goto-char ws)
(goto-char (org-table-begin))
(while (or (org-at-table-hline-p)
(looking-at-p ".*|\\s-+<[rcl]?\\([0-9]+\\)?>"))