diff options
author | Andreas Scherer <andreas_tex@freenet.de> | 2021-02-18 13:24:59 +0000 |
---|---|---|
committer | Andreas Scherer <andreas_tex@freenet.de> | 2021-02-18 13:24:59 +0000 |
commit | 0fd1fa84ee842821d277ac5864075ed24cb39748 (patch) | |
tree | c9badbc1e08f7196805ce5580d19967a488dbd7e /Build/source/texk/web2c/cwebdir | |
parent | 1013cf4d6005cc06bf90ecdf1807e61b9cf8bd31 (diff) |
[CWEB] And a few more.
git-svn-id: svn://tug.org/texlive/trunk@57783 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/cwebdir')
-rw-r--r-- | Build/source/texk/web2c/cwebdir/cweave.w | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/cwebdir/cweave.w b/Build/source/texk/web2c/cwebdir/cweave.w index 15ddeb32bea..7af93ff2c30 100644 --- a/Build/source/texk/web2c/cwebdir/cweave.w +++ b/Build/source/texk/web2c/cwebdir/cweave.w @@ -1291,8 +1291,8 @@ be output. @<Global...@>= char out_buf[line_length+1]; /* assembled characters */ -char *out_ptr; /* last character in |out_buf| */ char *out_buf_end = out_buf+line_length; /* end of |out_buf| */ +char *out_ptr; /* last character in |out_buf| */ int out_line; /* number of next line to be output */ @ The |flush_buffer| routine empties the buffer up to a given breakpoint, @@ -2107,12 +2107,12 @@ typedef scrap *scrap_pointer; @<Global...@>= scrap scrap_info[max_scraps]; /* memory array for scraps */ scrap_pointer scrap_info_end=scrap_info+max_scraps -1; /* end of |scrap_info| */ -scrap_pointer pp; /* current position for reducing productions */ scrap_pointer scrap_base; /* beginning of the current scrap sequence */ scrap_pointer scrap_ptr; /* ending of the current scrap sequence */ +scrap_pointer max_scr_ptr; /* largest value assumed by |scrap_ptr| */ +scrap_pointer pp; /* current position for reducing productions */ scrap_pointer lo_ptr; /* last scrap that has been examined */ scrap_pointer hi_ptr; /* first scrap that has not been examined */ -scrap_pointer max_scr_ptr; /* largest value assumed by |scrap_ptr| */ @ @<Set init...@>= scrap_base=scrap_info+1; |