aboutsummaryrefslogtreecommitdiff
path: root/st.h
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2017-11-06 17:57:45 -0600
committerDevin J. Pohly <djpohly@gmail.com>2018-02-25 21:53:24 -0600
commit323d38da20c8a1d295ab1dbc0fc7ce947ef824e1 (patch)
tree713288818320ae09fa67cc3b5032f67418a1d702 /st.h
parent416dd257274fd334be082b1138338adffa3e2d5e (diff)
downloadst-patched-323d38da20c8a1d295ab1dbc0fc7ce947ef824e1.tar.bz2
st-patched-323d38da20c8a1d295ab1dbc0fc7ce947ef824e1.tar.xz
st-patched-323d38da20c8a1d295ab1dbc0fc7ce947ef824e1.zip
Make win variable internal to x.c
There was only a single reference to the `win` variable in st.c, so exporting that to x.c allows us to rid ourselves of another extern. Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.h')
-rw-r--r--st.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/st.h b/st.h
index 71c79f4..8637d35 100644
--- a/st.h
+++ b/st.h
@@ -201,7 +201,6 @@ void *xrealloc(void *, size_t);
201char *xstrdup(char *); 201char *xstrdup(char *);
202 202
203/* Globals */ 203/* Globals */
204extern TermWindow win;
205extern Term term; 204extern Term term;
206extern Selection sel; 205extern Selection sel;
207extern int cmdfd; 206extern int cmdfd;