[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/igc 8225f1041ff 4/4: mirror_window
From: |
Gerd Moellmann |
Subject: |
scratch/igc 8225f1041ff 4/4: mirror_window |
Date: |
Fri, 17 May 2024 13:38:19 -0400 (EDT) |
branch: scratch/igc
commit 8225f1041ffefa7a17bd40a5b7a393cc7c99e141
Author: Gerd Möllmann <gerd@gnu.org>
Commit: Gerd Möllmann <gerd@gnu.org>
mirror_window
---
src/igc.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/src/igc.c b/src/igc.c
index 92851be40b4..5f199a8f9bc 100644
--- a/src/igc.c
+++ b/src/igc.c
@@ -3827,7 +3827,23 @@ mirror_frame (struct igc_mirror *m, struct frame *f)
static void
mirror_window (struct igc_mirror *m, struct window *w)
{
- emacs_abort ();
+ mirror_vectorlike (m, (struct Lisp_Vector *) w);
+ igc_assert (w->current_matrix == NULL);
+ igc_assert (w->desired_matrix == NULL);
+
+ /* FIXME: window.h syas the following two are "marked specially", so
+ they are not seen by fix_vectorlike. That's of course a no-go
+ with MPS. What ever is special about these, we have to find
+ another way to accomplish that with MPS. */
+ IGC_MIRROR_OBJ (m, &w->prev_buffers);
+ IGC_MIRROR_OBJ (m, &w->next_buffers);
+
+#ifdef HAVE_NS
+ void *pr[4];
+ int n = ns_emacs_scroller_refs (w, pr, ARRAYELTS (pr));
+ for (int i = 0; i < n; ++i)
+ IGC_MIRROR_RAW (m, pr[i]);
+#endif
}
static void