diff options
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/inputstack.h')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/inputstack.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/inputstack.h b/Build/source/texk/web2c/luatexdir/tex/inputstack.h index 428bd9d2adb..246bc93e9e2 100644 --- a/Build/source/texk/web2c/luatexdir/tex/inputstack.h +++ b/Build/source/texk/web2c/luatexdir/tex/inputstack.h @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */ -/* $Id: inputstack.h 3720 2010-06-13 08:04:27Z taco $ */ +/* $Id: inputstack.h 3853 2010-09-03 18:05:14Z oneiros $ */ #ifndef INPUTSTACK_H # define INPUTSTACK_H 1 @@ -33,10 +33,8 @@ typedef struct in_state_record { halfword loc_field; halfword limit_field; halfword name_field; - halfword ocp_lstack_field; /* used for omega translation processes */ int synctex_tag_field; /* stack the tag of the current file */ - signed int ocp_no_field:16; /* used for omega translation processes */ - signed int cattable_field:16; /* category table used by the current line (see textoken.c) */ + signed int cattable_field:16; /* category table used by the current line (see textoken.c) */ quarterword state_field:8; quarterword index_field:8; boolean partial_field:8; /* is the current line partial? (see textoken.c) */ @@ -56,8 +54,6 @@ extern in_state_record cur_input; /* the ``top'' input state */ # define iname cur_input.name_field /* name of the current file */ # define nofilter cur_input.nofilter_field /* is token filtering explicitly disallowed? */ # define synctex_tag cur_input.synctex_tag_field /* tag of the current file */ -# define current_ocp_lstack cur_input.ocp_lstack_field /* name of the current ocp */ -# define current_ocp_no cur_input.ocp_no_field /* name of the current ocp */ # define line_catcode_table cur_input.cattable_field # define line_partial cur_input.partial_field |