Explorar el Código

Move column and row default numbers into config.h

fpqc hace 8 años
padre
commit
c63a87cd93
Se han modificado 2 ficheros con 7 adiciones y 2 borrados
  1. 7 0
      config.def.h
  2. 0 2
      st.c

+ 7 - 0
config.def.h

@@ -130,6 +130,13 @@ static unsigned int defaultrcs = 257;
  */
 static unsigned int cursorshape = 2;
 
+/*
+ * Default columns and rows numbers
+ */
+
+static unsigned int cols = 80;
+static unsigned int rows = 24;
+
 /*
  * Default colour and shape of the mouse cursor
  */

+ 0 - 2
st.c

@@ -4471,8 +4471,6 @@ usage(void)
 int
 main(int argc, char *argv[])
 {
-	uint cols = 80, rows = 24;
-
 	xw.l = xw.t = 0;
 	xw.isfixed = False;
 	xw.cursor = cursorshape;