~ubuntu-branches/ubuntu/raring/luatex/raring

« back to all changes in this revision

Viewing changes to source/texk/web2c/luatexdir/tex/inputstack.h

  • Committer: Package Import Robot
  • Author(s): Norbert Preining
  • Date: 2011-05-20 09:40:39 UTC
  • mfrom: (0.8.1) (1.8.1) (19.2.3 oneiric)
  • Revision ID: package-import@ubuntu.com-20110520094039-7sezr4kqonjqxqz6
Tags: 0.70.1-1
* new upstream release (probably) matching TeX Live 2011
* deactivate fix-luatex-build-with-old-libpng patch, included upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
   You should have received a copy of the GNU General Public License along
18
18
   with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
19
19
 
20
 
/* $Id: inputstack.h 3720 2010-06-13 08:04:27Z taco $ */
 
20
/* $Id: inputstack.h 3853 2010-09-03 18:05:14Z oneiros $ */
21
21
 
22
22
#ifndef INPUTSTACK_H
23
23
#  define INPUTSTACK_H 1
33
33
    halfword loc_field;
34
34
    halfword limit_field;
35
35
    halfword name_field;
36
 
    halfword ocp_lstack_field;  /* used for omega translation processes */
37
36
    int synctex_tag_field;      /* stack the tag of the current file */
38
 
    signed int ocp_no_field:16;   /* used for omega translation processes */
39
 
    signed int cattable_field:16;      /* category table used by the current line (see textoken.c) */
 
37
    signed int cattable_field:16;       /* category table used by the current line (see textoken.c) */
40
38
    quarterword state_field:8;
41
39
    quarterword index_field:8;
42
40
    boolean partial_field:8;    /* is the current line partial? (see textoken.c) */
56
54
#  define  iname cur_input.name_field   /* name of the current file  */
57
55
#  define  nofilter cur_input.nofilter_field    /* is token filtering explicitly disallowed? */
58
56
#  define  synctex_tag cur_input.synctex_tag_field      /* tag of the current file */
59
 
#  define  current_ocp_lstack cur_input.ocp_lstack_field        /* name of the current ocp */
60
 
#  define  current_ocp_no cur_input.ocp_no_field        /* name of the current ocp */
61
57
#  define  line_catcode_table cur_input.cattable_field
62
58
#  define  line_partial cur_input.partial_field
63
59