Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Adjusted vertical spacing |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d152045be24e76b56300d16deddda8b4 |
| User & Date: | jmcclure 2020-03-30 23:01:19 |
Context
|
2020-04-01
| ||
| 01:10 | Added email contact check-in: d8bed81fb9 user: jmcclure tags: trunk | |
|
2020-03-30
| ||
| 23:01 | Adjusted vertical spacing check-in: d152045be2 user: jmcclure tags: trunk | |
| 19:14 | Simplified dirsInit; better variable names for colors check-in: 4100a87208 user: jmcclure tags: trunk | |
Changes
Changes to interrobang.c.
| ︙ | ︙ | |||
176 177 178 179 180 181 182 |
pos += len;
return 0;
}
static int redraw() {
XGlyphInfo ext;
XClearWindow(dpy, win);
| | | | 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
pos += len;
return 0;
}
static int redraw() {
XGlyphInfo ext;
XClearWindow(dpy, win);
XftDrawStringUtf8(xdraw, &xcol, xfont, 0, fh - 1, (XftChar8 *) line, strlen(line));
XftTextExtentsUtf8(dpy, xfont, (XftChar8 *) line, pos, &ext);
XFillRectangle(dpy, win, gc, ext.xOff + 2, h-fh-2, 2, fh-2);
return 0;
}
static int mainLoop() {
XEvent ev;
KeySym key;
int len;
|
| ︙ | ︙ |