Specifications

A-10
Guide to Printers and Printing
u value of 3 will direct the process into the else piece of the outer if–then–else statement,
and the Q value of 3 will select an envelope page length of 1087 pels.
Case 2: Same as case 1.
Case 3: The user–specified manual paper handling on the command line but did not specify
a paper source so Wu is assigned the value 0, and that value is returned to the evaluation
of wQ. The 0 will cause wQ to be assigned the value of s0 (the paper size for manual paper
feed, a 1). When the evaluation of wJ is resumed, the u value of 0 will direct the process
into the if piece of the outer if–then–else statement, and the Q value of 1 (s0) will select a
page length of 2400 pels.
Case 4: The user specified manual paper handling on the command line and also used the
u flag to specify either the primary or alternate paper source (but definitely not envelopes).
As with case 3, a page length of 2400 pels will be chosen.
Case 5: The user–specified manual paper handling on the command line and also used the
u flag to specify an envelope paper source so Wu is assigned the value 4, and that value is
returned to the evaluation of wQ. The 4 will cause wQ to be assigned the value of s4 (the
envelope size for manual envelope size, a 3). When the evaluation of wJ is resumed, the u
value of 4 will direct the process into the else piece of the outer if–then–else statement, and
the Q value of 3 will select an envelope length of 1087 pels.
Our example is case 1: neither the O nor the u flags were used on the command line, so
Wu is assigned a value of 1, the default _u value for this colon file. When the evaluation of
wQ resumes, the match occurs on s1, and a 1 is returned to the evaluation of wJ. The u
value of 1 direct the process into the if piece of the outer if–then–else statement, and the Q
value of 1 selects a page length of 2400 pels. This value is returned to the evaluation of _l.
The remaining printer colon file escape sequences defining _l reason that if there are 2400
pels available (vertically), and if we want six lines per inch, and if there are 300 pels per inch
(the resolution of the printer), then 48 lines can be printed on a page. The value 48 is
returned to the evaluation of ia. That’s basically where the –l48 in the PIPELINE OF
FILTERS came from.