aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.def.h7
-rw-r--r--st.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index 32d107d..a719e36 100644
--- a/config.def.h
+++ b/config.def.h
@@ -131,6 +131,13 @@ static unsigned int defaultrcs = 257;
131static unsigned int cursorshape = 2; 131static unsigned int cursorshape = 2;
132 132
133/* 133/*
134 * Default columns and rows numbers
135 */
136
137static unsigned int cols = 80;
138static unsigned int rows = 24;
139
140/*
134 * Default colour and shape of the mouse cursor 141 * Default colour and shape of the mouse cursor
135 */ 142 */
136static unsigned int mouseshape = XC_xterm; 143static unsigned int mouseshape = XC_xterm;
diff --git a/st.c b/st.c
index d6fe58a..fbcd9e0 100644
--- a/st.c
+++ b/st.c
@@ -4471,8 +4471,6 @@ usage(void)
4471int 4471int
4472main(int argc, char *argv[]) 4472main(int argc, char *argv[])
4473{ 4473{
4474 uint cols = 80, rows = 24;
4475
4476 xw.l = xw.t = 0; 4474 xw.l = xw.t = 0;
4477 xw.isfixed = False; 4475 xw.isfixed = False;
4478 xw.cursor = cursorshape; 4476 xw.cursor = cursorshape;