changeset 6157:9422e430f067

(Fdelete_frame): Don't initialize a Lisp_Object. Clean up line breaks.
author Richard M. Stallman <rms@gnu.org>
date Wed, 02 Mar 1994 22:05:40 +0000
parents 3aafcde7e7c4
children 6b81b2575071
files src/frame.c
diffstat 1 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.c	Wed Mar 02 22:03:44 1994 +0000
+++ b/src/frame.c	Wed Mar 02 22:05:40 1994 +0000
@@ -701,14 +701,13 @@
 	   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");
 	}
     }