From 1b8346634160585141a688988f3ce349a6ad78e2 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Fri, 22 Mar 2019 14:41:40 +0100 Subject: [PATCH] Remove xrepaint_noclear Remove the now obsolete function. --- xwin.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/xwin.c b/xwin.c index 5dd7e7d..5f9751f 100644 --- a/xwin.c +++ b/xwin.c @@ -59,7 +59,6 @@ extern int xsetup(); extern int xmainloop(); extern void xclear(); extern void xrepaint(); -extern void xrepaint_noclear(); extern void xdrawrect(); /* @@ -498,14 +497,6 @@ void xrepaint() repaint(xwa.width, xwa.height); } -void xrepaint_noclear() -{ - XWindowAttributes xwa; - - XGetWindowAttributes(dpy, win, &xwa); - repaint(xwa.width, xwa.height); -} - void readable_float(float number, char* number_label) { char number_string[1024];