1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 00:50:44 -08:00

Fix buffer_text::markers

This commit is contained in:
Gerd Möllmann 2024-04-19 16:17:10 +02:00
parent d1e0545323
commit 6cc48eb6cc
2 changed files with 2 additions and 1 deletions

View file

@ -72,6 +72,6 @@ b die
target create emacs
env EMACS_TEST_DIRECTORY=/Users/gerd/emacs/github/igc/test
command alias go process launch --working-dir ../test
settings set -- target.run-args --module-assertions --no-init-file --no-site-file --no-site-lisp -L ":." -l ert --eval "(setq treesit-extra-load-path '(\"/Users/gerd/.emacs.d/tree-sitter\"))" -l lisp/net/tramp-tests --batch --eval '(ert-run-tests-batch-and-exit (quote (not (or (tag :expensive-test) (tag :unstable) (tag :nativecomp)))))'
settings set -- target.run-args --module-assertions --no-init-file --no-site-file --no-site-lisp -L ":." -l ert --eval "(setq treesit-extra-load-path '(\"/Users/gerd/.emacs.d/tree-sitter\"))" -l lisp/emacs-lisp/package-tests --batch --eval '(ert-run-tests-batch-and-exit (quote (not (or (tag :expensive-test) (tag :unstable) (tag :nativecomp)))))'
# end.

View file

@ -1174,6 +1174,7 @@ fix_buffer (mps_ss_t ss, struct buffer *b)
IGC_FIX12_RAW (ss, &b->own_text.intervals);
IGC_FIX12_RAW (ss, &b->own_text.markers);
IGC_FIX12_RAW (ss, &b->overlays);
IGC_FIX12_RAW (ss, &b->own_text.markers);
IGC_FIX12_RAW (ss, &b->base_buffer);
if (b->base_buffer)