summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/tex/inputstack.h
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-06-13 08:48:10 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-06-13 08:48:10 +0000
commit7e14a4bfceb28506844fd4f3ac51e55b1edec573 (patch)
tree80d56bbc42fd40d346d034435e6a377db6b1fb06 /Build/source/texk/web2c/luatexdir/tex/inputstack.h
parentaa31d70f2e86b7c9e0e4fb4fd9c1ec5fb3093801 (diff)
force two bitfields to be signed, after a bug report from Vladimir Volovich <vvv@vsu.ru>
git-svn-id: svn://tug.org/texlive/trunk@18931 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex/inputstack.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/inputstack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/inputstack.h b/Build/source/texk/web2c/luatexdir/tex/inputstack.h
index e77e9259c8f..428bd9d2adb 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 3261 2009-12-18 11:38:21Z taco $ */
+/* $Id: inputstack.h 3720 2010-06-13 08:04:27Z taco $ */
#ifndef INPUTSTACK_H
# define INPUTSTACK_H 1
@@ -35,8 +35,8 @@ typedef struct in_state_record {
halfword name_field;
halfword ocp_lstack_field; /* used for omega translation processes */
int synctex_tag_field; /* stack the tag of the current file */
- halfword ocp_no_field:16; /* used for omega translation processes */
- int cattable_field:16; /* category table used by the current line (see textoken.c) */
+ 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) */
quarterword state_field:8;
quarterword index_field:8;
boolean partial_field:8; /* is the current line partial? (see textoken.c) */