|
3726 | 3726 | of characters is defined as the concatenation of
|
3727 | 3727 | \begin{itemize}
|
3728 | 3728 | \item the empty sequence if \tcode{gptr()} is null, otherwise the
|
3729 |
| -\tcode{egptr() - gptr()} |
3730 |
| -characters starting at |
3731 |
| -\tcode{gptr()}, |
| 3729 | +characters in |
| 3730 | +\range{gptr()}{egptr()}, |
3732 | 3731 | followed by
|
3733 | 3732 | \item
|
3734 | 3733 | some (possibly empty) sequence of characters read from the input sequence.
|
|
3746 | 3745 | The
|
3747 | 3746 | \term{backup sequence}
|
3748 | 3747 | is the empty sequence if \tcode{eback()} is null, otherwise the
|
3749 |
| -\tcode{gptr() - eback()} |
3750 |
| -characters beginning at |
3751 |
| -\tcode{eback()}. |
| 3748 | +characters in |
| 3749 | +\range{eback()}{gptr()}. |
3752 | 3750 |
|
3753 | 3751 | \pnum
|
3754 | 3752 | \effects
|
|
3760 | 3758 | if the pending sequence is non-empty, then
|
3761 | 3759 | \tcode{egptr()}
|
3762 | 3760 | is non-null and
|
3763 |
| -\tcode{egptr() - gptr()} |
3764 |
| -characters starting at |
3765 |
| -\tcode{gptr()} |
3766 |
| -are the characters in the pending sequence, otherwise |
| 3761 | +the characters in \range{gptr()}{egptr()} are |
| 3762 | +the characters in the pending sequence, |
| 3763 | +otherwise |
3767 | 3764 | either \tcode{gptr()}
|
3768 | 3765 | is null or
|
3769 | 3766 | \tcode{gptr() == egptr()}.
|
|
3778 | 3775 | \item
|
3779 | 3776 | the backup sequence contains at least
|
3780 | 3777 | \tcode{gptr() - eback()}
|
3781 |
| -characters, in which case the |
3782 |
| -\tcode{gptr() - eback()} |
3783 |
| -characters starting at |
3784 |
| -\tcode{eback()} |
| 3778 | +characters, in which case the characters in |
| 3779 | +\range{eback()}{gptr()} |
3785 | 3780 | agree with the last
|
3786 | 3781 | \tcode{gptr() - eback()}
|
3787 | 3782 | characters of the backup sequence, or
|
3788 | 3783 | \item
|
3789 |
| -the \tcode{n} characters starting at |
3790 |
| -\tcode{gptr() - n} |
| 3784 | +the characters in \range{gptr() - n}{gptr()} |
3791 | 3785 | agree with the backup sequence (where \tcode{n} is the length of the backup sequence).
|
3792 | 3786 | \end{itemize}
|
3793 | 3787 |
|
|
0 commit comments