]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/pgtkfns.c (Fx_create_frame): Fix coding style
authorYuuki Harano <masm+github@masm11.me>
Sun, 13 Jun 2021 09:26:43 +0000 (18:26 +0900)
committerYuuki Harano <masm+github@masm11.me>
Sun, 13 Jun 2021 09:26:43 +0000 (18:26 +0900)
src/pgtkfns.c

index 0f9f2e4c83f5ea1d6a6ae456ece94cfaae64bcf2..ce6775d93d164c357ab24699e13d51e8de22180e 100644 (file)
@@ -1693,13 +1693,14 @@ This function is an internal primitive--use `make-frame' instead.  */ )
       unblock_input ();
     }
 
-  if (FRAME_GTK_OUTER_WIDGET (f)) {
-    GList *w = gtk_container_get_children(GTK_CONTAINER(FRAME_GTK_OUTER_WIDGET (f)));
-    for (; w != NULL; w = w->next)
-      {
-       gtk_widget_show_all (GTK_WIDGET(w->data));
-      }
-  }
+  if (FRAME_GTK_OUTER_WIDGET (f))
+    {
+      GList *w = gtk_container_get_children (GTK_CONTAINER (FRAME_GTK_OUTER_WIDGET (f)));
+      for (; w != NULL; w = w->next)
+       {
+         gtk_widget_show_all (GTK_WIDGET (w->data));
+       }
+    }
 
   gui_default_parameter (f, parms, Qno_focus_on_map, Qnil,
                         NULL, NULL, RES_TYPE_BOOLEAN);