0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

Fix test-org-element/cache "Preserve local structures when re-parenting."

* testing/lisp/test-org-element.el (test-org-element/cache): Add
spaces to make the "abcd" table a single table.  The old version uses
example org text with two tables and was passing because of another
bug in org-element-cache.  Testing the old version with
org-element-use-cache set to nil would yield error, while it should
not.
This commit is contained in:
Ihor Radchenko 2021-05-15 19:19:09 +08:00 committed by Bastien
parent 4ce78810ac
commit 6ab5299e5b

View file

@ -3770,7 +3770,7 @@ Text
(eq 'table (eq 'table
(let ((org-element-use-cache t)) (let ((org-element-use-cache t))
(org-test-with-temp-text (org-test-with-temp-text
"#+begin_center\nP0\n\n<point>\n\n P1\n | a | b |\n| c | d |\n#+end_center" "#+begin_center\nP0\n\n<point>\n\n P1\n | a | b |\n | c | d |\n#+end_center"
(save-excursion (search-forward "| c |") (org-element-at-point)) (save-excursion (search-forward "| c |") (org-element-at-point))
(insert "- item") (insert "- item")
(search-forward "| c |") (search-forward "| c |")