]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fframe_or_buffer_changed_p): Record frame names
authorKarl Heuer <kwzh@gnu.org>
Thu, 25 May 1995 17:06:34 +0000 (17:06 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 25 May 1995 17:06:34 +0000 (17:06 +0000)
as well as the frame objects.

src/dispnew.c

index fa78c95d50c3563603f4f2e679d74a5d27e329c6..a1240cb7c6ba5e6ee51562ebc0e31b1c4929a1c0 100644 (file)
@@ -1920,10 +1920,15 @@ the current state.\n")
   Lisp_Object tail, frame, buf;
   Lisp_Object *vecp;
   int n;
+
   vecp = XVECTOR (frame_and_buffer_state)->contents;
   FOR_EACH_FRAME (tail, frame)
-    if (!EQ (*vecp++, frame))
-      goto changed;
+    {
+      if (!EQ (*vecp++, frame))
+       goto changed;
+      if (!EQ (*vecp++, XFRAME (frame)->name))
+       goto changed;
+    }
   /* Check that the buffer info matches.
      No need to test for the end of the vector
      because the last element of the vector is lambda
@@ -1957,7 +1962,10 @@ the current state.\n")
     frame_and_buffer_state = Fmake_vector (make_number (n), Qlambda);
   vecp = XVECTOR (frame_and_buffer_state)->contents;
   FOR_EACH_FRAME (tail, frame)
-    *vecp++ = frame;
+    {
+      *vecp++ = frame;
+      *vecp++ = XFRAME (frame)->name;
+    }
   for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr)
     {
       buf = XCONS (XCONS (tail)->car)->cdr;