Codebase list xd / 055696d
New upstream version 3.29.02 Frank B. Brokken 2 years ago
3 changed file(s) with 11 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 #define VERSION "3.29.01"
0 #define VERSION "3.29.02"
11 #define YEARS "1994-2021"
0 xd (3.29.02)
1
2 * Repaired flaw in icmake/finall: it now checks for 'backtick' returning a
3 single, empty element.
4
05 xd (3.29.01)
16
27 * Removed -q from xd's build script
1616
1717 entries = backtick(cmd + " " + pattern + " -printf \"%f\\n\"");
1818
19 for (idx = listlen(entries); idx--; )
20 ret += (list)cutEoln(entries[idx]);
19 if (idx > 0 && strlen(entries[0]) > 0)
20 {
21 for (idx = listlen(entries); idx--; )
22 ret += (list)cutEoln(entries[idx]);
23 }
2124
2225 chdir(g_cwd);
2326