diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-05-21 21:51:14 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-06-03 19:13:15 +0200 |
commit | 44c7de3dcf49ee568863f55610f40c7a05b4dfe7 (patch) | |
tree | 1a3e45f6e616ff256a0d195272d68ca69f5c153f /util.h | |
parent | arg.h: fixed argv checks order (diff) | |
download | dmenu-44c7de3dcf49ee568863f55610f40c7a05b4dfe7.tar.gz dmenu-44c7de3dcf49ee568863f55610f40c7a05b4dfe7.tar.bz2 dmenu-44c7de3dcf49ee568863f55610f40c7a05b4dfe7.zip |
import new drw from libsl and minor fixes.
- extract drawitem function (code deduplication) - fix bug where inputw was not correctly calculated from the widest item, but just from the one with the longest strlen() which is not the same. It's better now, but does not account for fallback fonts, since it would be too slow to calculate all the correct item widths on startup. - minor code style fixes (indentation, useless line breaks)
Diffstat (limited to '')
-rw-r--r-- | util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h index cded043..f633b51 100644 --- a/util.h +++ b/util.h @@ -4,5 +4,5 @@ #define MIN(A, B) ((A) < (B) ? (A) : (B)) #define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B)) -void die(const char *errstr, ...); -void *ecalloc(size_t, size_t); +void die(const char *fmt, ...); +void *ecalloc(size_t nmemb, size_t size); |