diff options
| author | Christoph Lohmann <20h@r-36.net> | 2014-09-29 15:40:37 +0200 | 
|---|---|---|
| committer | Christoph Lohmann <20h@r-36.net> | 2014-09-29 15:40:37 +0200 | 
| commit | 63a07eb19c908ac86936b6f9857738107326d27a (patch) | |
| tree | 578f15ae7e10fe85d75b482e7b1403aa395d54c4 | |
| parent | dc8c5c82aa14e75305bd5b0e42b4f8bba45702a8 (diff) | |
Minor style changes for the last patch.
| -rw-r--r-- | st.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -3064,10 +3064,10 @@ xunloadfonts(void) {  	xunloadfont(&dc.ibfont);  } -  void  xzoom(const Arg *arg) {  	Arg larg; +  	larg.i = usedfontsize + arg->i;  	xzoomabs(&larg);  } @@ -3084,6 +3084,7 @@ xzoomabs(const Arg *arg) {  void  xzoomreset(const Arg *arg) {  	Arg larg; +  	if(defaultfontsize > 0) {  		larg.i = defaultfontsize;  		xzoomabs(&larg); | 
