]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fdelete_frame): Don't initialize a Lisp_Object.
authorRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:05:40 +0000 (22:05 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 2 Mar 1994 22:05:40 +0000 (22:05 +0000)
Clean up line breaks.

src/frame.c

index b8d335a50954d8e41093fbf693883c4500c5459b..f90d5384b0e9f20b97d2b5fe5d25634a83424974 100644 (file)
@@ -701,14 +701,13 @@ but if the second optional argument FORCE is non-nil, you may do so.")
           CONSP (frames);
           frames = XCONS (frames)->cdr)
        {
-         Lisp_Object this = XCONS (frames)->car;
+         Lisp_Object this;
+         this = XCONS (frames)->car;
 
          if (! EQ (this, frame)
              && EQ (frame,
-                    (WINDOW_FRAME
-                     (XWINDOW
-                      (FRAME_MINIBUF_WINDOW
-                       (XFRAME (this)))))))
+                    WINDOW_FRAME (XWINDOW
+                                  (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
            error ("Attempt to delete a surrogate minibuffer frame");
        }
     }