aboutsummarylogtreecommitdiffstats
path: root/st.h
diff options
context:
space:
mode:
authorDevin J. Pohly2017-11-06 17:57:45 -0600
committerDevin J. Pohly2018-02-25 21:53:24 -0600
commita2aa6add3b2f5b77d8252af6a15ee4553fbd03a5 (patch)
tree4e3c85a034611b61dbc882ce6bc2acf49a13807e /st.h
parentf126764598c56fb56d0dc9793feb5b73e3d975ae (diff)
downloadaur-a2aa6add3b2f5b77d8252af6a15ee4553fbd03a5.tar.gz
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 71c79f4c83c8..8637d358123e 100644
--- a/st.h
+++ b/st.h
@@ -201,7 +201,6 @@ void *xrealloc(void *, size_t);
char *xstrdup(char *);
/* Globals */
-extern TermWindow win;
extern Term term;
extern Selection sel;
extern int cmdfd;