version 1.23, 2014/04/07 11:46:03 |
version 1.26, 2014/07/11 09:07:33 |
Line 460 formatcode(struct state *st, const char *buf, size_t * |
|
Line 460 formatcode(struct state *st, const char *buf, size_t * |
|
(*start) += dsz; |
(*start) += dsz; |
break; |
break; |
} |
} |
|
if (*start < end) { |
|
assert('>' == buf[*start]); |
|
(*start)++; |
|
} |
|
if (isspace(last)) |
|
while (*start < end && isspace((int)buf[*start])) |
|
(*start)++; |
return(0); |
return(0); |
} |
} |
|
|
Line 1263 readfile(const struct args *args, const char *fname) |
|
Line 1270 readfile(const struct args *args, const char *fname) |
|
time_t ttm; |
time_t ttm; |
struct stat st; |
struct stat st; |
|
|
assert(NULL != fname); |
|
|
|
fd = 0 != strcmp("-", fname) ? |
fd = 0 != strcmp("-", fname) ? |
open(fname, O_RDONLY, 0) : STDIN_FILENO; |
open(fname, O_RDONLY, 0) : STDIN_FILENO; |
|
|
Line 1370 main(int argc, char *argv[]) |
|
Line 1375 main(int argc, char *argv[]) |
|
|
|
/* Accept only a single input file. */ |
/* Accept only a single input file. */ |
|
|
if (argc > 2) |
if (argc > 1) |
return(EXIT_FAILURE); |
goto usage; |
else if (1 == argc) |
else if (1 == argc) |
fname = *argv; |
fname = *argv; |
|
|
Line 1380 main(int argc, char *argv[]) |
|
Line 1385 main(int argc, char *argv[]) |
|
|
|
usage: |
usage: |
fprintf(stderr, "usage: %s [-d date] " |
fprintf(stderr, "usage: %s [-d date] " |
"[-n title] [-s section]\n", name); |
"[-n title] [-s section] [file]\n", name); |
|
|
return(EXIT_FAILURE); |
return(EXIT_FAILURE); |
} |
} |