Remove screen_infomsg(), nothing uses it.

ok okan.
This commit is contained in:
oga
2008-04-16 13:35:37 +00:00
parent 642afbdf8c
commit f67772be65
5 changed files with 1 additions and 64 deletions

View File

@ -610,7 +610,7 @@ client_cyclenext(int reverse)
/* TODO: maybe this should just be a CIRCLEQ. */
if (!(cc = _curcc)) {
if ((cc = client_current()) == NULL) {
if (TAILQ_EMPTY(&Clientq))
return(NULL);
cc = TAILQ_FIRST(&Clientq);
@ -675,20 +675,6 @@ client__cycle(struct client_ctx *cc,
return (cc != save ? cc : NULL);
}
void
client_altrelease()
{
struct client_ctx *cc = _curcc;
struct screen_ctx *sc;
if (cc == NULL)
return;
sc = CCTOSC(cc);
XUnmapWindow(X_Dpy, sc->infowin);
XReparentWindow(X_Dpy, sc->infowin, sc->rootwin, 0, 0);
}
void
client_placecalc(struct client_ctx *cc)
{