Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removed needless check |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
d1087cd34f28b5498eaee33a07edceb5 |
| User & Date: | jmcclure 2020-04-01 01:11:01 |
Context
|
2020-04-02
| ||
| 14:41 | Tab completition revised to use *last word* in line Leaf check-in: 085aee93df user: jmcclure tags: trunk | |
|
2020-04-01
| ||
| 01:11 | Removed needless check check-in: d1087cd34f user: jmcclure tags: trunk | |
| 01:10 | Added email contact check-in: d8bed81fb9 user: jmcclure tags: trunk | |
Changes
Changes to interrobang.c.
| ︙ | ︙ | |||
229 230 231 232 233 234 235 |
return 0;
}
/* KEY BINDABLE ACTION FUNCTIONS */
void complete_run_helper(const Arg *arg, const char *path, int run) {
| < | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
return 0;
}
/* KEY BINDABLE ACTION FUNCTIONS */
void complete_run_helper(const Arg *arg, const char *path, int run) {
char arg0[MAX], arg1[MAX], *p;
pid_t pid;
int fd[2];
FILE *in;
setenv(ENV_LINE, line, 1);
strcpy(arg0, path);
if (line[0] == bang) {
|
| ︙ | ︙ |