aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann <20h@r-36.net>2014-09-29 15:40:37 +0200
committerChristoph Lohmann <20h@r-36.net>2014-09-29 15:40:37 +0200
commit63a07eb19c908ac86936b6f9857738107326d27a (patch)
tree578f15ae7e10fe85d75b482e7b1403aa395d54c4
parentdc8c5c82aa14e75305bd5b0e42b4f8bba45702a8 (diff)
downloadst-63a07eb19c908ac86936b6f9857738107326d27a.tar.gz
st-63a07eb19c908ac86936b6f9857738107326d27a.zip
Minor style changes for the last patch.
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/st.c b/st.c
index 2b4d52c..c90bed1 100644
--- a/st.c
+++ b/st.c
@@ -3064,10 +3064,10 @@ xunloadfonts(void) {
3064 xunloadfont(&dc.ibfont); 3064 xunloadfont(&dc.ibfont);
3065} 3065}
3066 3066
3067
3068void 3067void
3069xzoom(const Arg *arg) { 3068xzoom(const Arg *arg) {
3070 Arg larg; 3069 Arg larg;
3070
3071 larg.i = usedfontsize + arg->i; 3071 larg.i = usedfontsize + arg->i;
3072 xzoomabs(&larg); 3072 xzoomabs(&larg);
3073} 3073}
@@ -3084,6 +3084,7 @@ xzoomabs(const Arg *arg) {
3084void 3084void
3085xzoomreset(const Arg *arg) { 3085xzoomreset(const Arg *arg) {
3086 Arg larg; 3086 Arg larg;
3087
3087 if(defaultfontsize > 0) { 3088 if(defaultfontsize > 0) {
3088 larg.i = defaultfontsize; 3089 larg.i = defaultfontsize;
3089 xzoomabs(&larg); 3090 xzoomabs(&larg);