|
Lines 35-41
Link Here
|
| 35 |
{ |
35 |
{ |
| 36 |
fprintf(stderr, "%s: page specification error:\n", program); |
36 |
fprintf(stderr, "%s: page specification error:\n", program); |
| 37 |
fprintf(stderr, " <pagespecs> = [modulo:]<spec>\n"); |
37 |
fprintf(stderr, " <pagespecs> = [modulo:]<spec>\n"); |
| 38 |
fprintf(stderr, " <spec> = [-]pageno[@scale][L|R|U][(xoff,yoff)][,spec|+spec]\n"); |
38 |
fprintf(stderr, " <spec> = [-]pageno[@scale][L|R|U|H|V][(xoff,yoff)][,spec|+spec]\n"); |
| 39 |
fprintf(stderr, " modulo>=1, 0<=pageno<modulo\n"); |
39 |
fprintf(stderr, " modulo>=1, 0<=pageno<modulo\n"); |
| 40 |
fflush(stderr); |
40 |
fflush(stderr); |
| 41 |
exit(1); |
41 |
exit(1); |
|
Lines 81-86
Link Here
|
| 81 |
tail->rotate += 180; |
81 |
tail->rotate += 180; |
| 82 |
tail->flags |= ROTATE; |
82 |
tail->flags |= ROTATE; |
| 83 |
break; |
83 |
break; |
|
|
84 |
case 'h': case 'H': |
| 85 |
tail->hflip += 1; |
| 86 |
tail->flags |= HFLIP; |
| 87 |
break; |
| 88 |
case 'v': case 'V': |
| 89 |
tail->vflip += 1; |
| 90 |
tail->flags |= VFLIP; |
| 91 |
break; |
| 84 |
case '(': |
92 |
case '(': |
| 85 |
tail->xoff += parsedimen(&str, argerror); |
93 |
tail->xoff += parsedimen(&str, argerror); |
| 86 |
if (*str++ != ',') argerror(); |
94 |
if (*str++ != ',') argerror(); |