diff options
author | zachir <zachir@librem.one> | 2022-01-27 00:04:44 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-01-27 00:04:44 -0600 |
commit | 54755efae4162c5664bec5d2cb02e2ceeac1d4bf (patch) | |
tree | 73b02961534c3eadbd268d1e8c4b2eda02ffeb4e /x.c | |
parent | e77592fb54057e331dea65d293ede7856d2f2ba1 (diff) |
x.c: fix warning about unused variable/function
Diffstat (limited to 'x.c')
-rw-r--r-- | x.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -208,7 +208,6 @@ static void bpress(XEvent *); static void bmotion(XEvent *); static void propnotify(XEvent *); static void selnotify(XEvent *); -static void selclear_(XEvent *); static void selrequest(XEvent *); static void setsel(char *, Time); static void mousesel(XEvent *, int); @@ -635,12 +634,6 @@ xclipcopy(void) } void -selclear_(XEvent *e) -{ - selclear(); -} - -void selrequest(XEvent *e) { XSelectionRequestEvent *xsre; @@ -1272,7 +1265,6 @@ void xinit(int cols, int rows) { XGCValues gcvalues; - Cursor cursor; Window parent; pid_t thispid = getpid(); XColor xmousefg, xmousebg; |