diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2017-10-17 16:46:26 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2018-02-25 21:53:24 -0600 |
commit | 416dd257274fd334be082b1138338adffa3e2d5e (patch) | |
tree | d9bd7a58987adff6977cc6e53e003fa28295c382 /st.h | |
parent | 75c9a0ee1d232a1a177746d97a13cf92b03da44a (diff) | |
download | st-416dd257274fd334be082b1138338adffa3e2d5e.tar.gz st-416dd257274fd334be082b1138338adffa3e2d5e.tar.bz2 |
Move X-related config.h types into x.c
No need to expose Shortcut, MouseShortcut, and Key anymore.
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 23 |
1 files changed, 0 insertions, 23 deletions
@@ -135,12 +135,6 @@ typedef struct { } TermWindow; typedef struct { - uint b; - uint mask; - char *s; -} MouseShortcut; - -typedef struct { int mode; int type; int snap; @@ -170,23 +164,6 @@ typedef union { const void *v; } Arg; -typedef struct { - uint mod; - KeySym keysym; - void (*func)(const Arg *); - const Arg arg; -} Shortcut; - -typedef struct { - KeySym k; - uint mask; - char *s; - /* three valued logic variables: 0 indifferent, 1 on, -1 off */ - signed char appkey; /* application keypad */ - signed char appcursor; /* application cursor */ - signed char crlf; /* crlf mode */ -} Key; - void die(const char *, ...); void redraw(void); |