chiark / gitweb /
*** empty log message ***
[sympathy.git] / src / vt102.c
index a879999359a729720987ca7921296d094df93929..52f7fb959f60f70d8a22e88a223394214fd68a8e 100644 (file)
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
 
 /*
  * $Log$
+ * Revision 1.46  2008/02/27 01:31:38  james
+ * *** empty log message ***
+ *
  * Revision 1.45  2008/02/27 01:31:14  james
  * *** empty log message ***
  *
@@ -2032,14 +2035,15 @@ vt102_new (int width)
 
   vt102_reset (v);
 
-  if (width) {
-          v->current_width =width;
-          v->crt.width = v->current_width;
-          v->screen_end.x = v->current_width - 1;
-          v->top_margin = v->screen_start;
-          v->bottom_margin = v->screen_end;
-          vt102_cursor_home (v);
-  }
+  if (width)
+    {
+      v->current_width = width;
+      v->crt.width = v->current_width;
+      v->screen_end.x = v->current_width - 1;
+      v->top_margin = v->screen_start;
+      v->bottom_margin = v->screen_end;
+      vt102_cursor_home (v);
+    }
 
   return v;
 }