mirror of
https://github.com/mintycube/dmenu.git
synced 2024-10-22 14:05:48 +02:00
dynamic options vs TSV patch issue ref. #8
This commit is contained in:
parent
452174309f
commit
e3a291ea43
@ -33,6 +33,12 @@ readstream(FILE* stream)
|
|||||||
*p = '\0';
|
*p = '\0';
|
||||||
if (!(items[i].text = strdup(buf)))
|
if (!(items[i].text = strdup(buf)))
|
||||||
die("cannot strdup %u bytes:", strlen(buf) + 1);
|
die("cannot strdup %u bytes:", strlen(buf) + 1);
|
||||||
|
#if TSV_PATCH
|
||||||
|
if ((p = strchr(buf, '\t')))
|
||||||
|
*p = '\0';
|
||||||
|
if (!(items[i].stext = strdup(buf)))
|
||||||
|
die("cannot strdup %u bytes:", strlen(buf) + 1);
|
||||||
|
#endif // TSV_PATCH
|
||||||
#if MULTI_SELECTION_PATCH
|
#if MULTI_SELECTION_PATCH
|
||||||
items[i].id = i;
|
items[i].id = i;
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user