Introduction
Introduction Statistics Contact Development Disclaimer Help
minor style fix and new var for fonts - sent - simple plaintext presentation to…
git clone git://git.suckless.org/sent
Log
Files
Refs
README
LICENSE
---
commit 76d3b0bb95e3e52f9763f8f5c371c1fbeb9a2971
parent 87ef23296b1c83f5da762da6e3177fc9f41ae281
Author: Markus Teich <[email protected]>
Date: Sun, 19 Apr 2015 17:36:18 +0200
minor style fix and new var for fonts
Diffstat:
M sent.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/sent.c b/sent.c
@@ -125,6 +125,7 @@ static XWindow xw;
static struct DC dc;
static Drw *d = NULL;
static Scm *sc;
+static Fnt *fonts[NUMFONTS];
static int running = 1;
static void (*handler[LASTEvent])(XEvent *) = {
@@ -606,7 +607,7 @@ void xinit()
xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
- if(!(d = drw_create(xw.dpy, xw.scr, xw.win, xw.w, xw.h)))
+ if (!(d = drw_create(xw.dpy, xw.scr, xw.win, xw.w, xw.h)))
die("Can't create drawing context.");
sc = drw_scm_create(d, "#000000", "#FFFFFF");
drw_setscheme(d, sc);
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.