diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-02-03 13:01:31 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-02-03 13:01:31 +0000 |
commit | 4dc568b1e2c01476f34b6c014da3bc487b71aacf (patch) | |
tree | a6a389e1a3915bdc1b618eb2aeae27fd7f21b68a /Build/source/texk/web2c/luatexdir/dvi | |
parent | 4a985ab4153e6ba130b801d4cec60709b0a44e47 (diff) |
Import LuaTeX snapshot 0.78.3
git-svn-id: svn://tug.org/texlive/trunk@32854 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/dvi')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/dvi/dvigen.h | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/dvi/dvigen.w | 9 |
2 files changed, 8 insertions, 7 deletions
diff --git a/Build/source/texk/web2c/luatexdir/dvi/dvigen.h b/Build/source/texk/web2c/luatexdir/dvi/dvigen.h index aca52a918de..9d6b5ff85d6 100644 --- a/Build/source/texk/web2c/luatexdir/dvi/dvigen.h +++ b/Build/source/texk/web2c/luatexdir/dvi/dvigen.h @@ -1,6 +1,6 @@ /* dvigen.h - Copyright 2009 Taco Hoekwater <taco@luatex.org> + Copyright 2009-2013 Taco Hoekwater <taco@luatex.org> This file is part of LuaTeX. @@ -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: dvigen.h 4576 2013-02-08 20:42:57Z hhenkel $ */ +/* $Id: dvigen.h 4679 2013-12-19 15:47:53Z luigi $ */ #ifndef DVIGEN_H # define DVIGEN_H @@ -180,7 +180,7 @@ extern void dvi_special(PDF pdf, halfword p); extern void ensure_dvi_header_written(PDF pdf); extern void finish_dvi_file(PDF pdf, int version, int revision); -extern void dvi_place_glyph(PDF pdf, internal_font_number f, int c); +extern void dvi_place_glyph(PDF pdf, internal_font_number f, int c, int ex); extern void dvi_place_rule(PDF pdf, halfword q, scaledpos size); extern void dvi_begin_page(PDF pdf); diff --git a/Build/source/texk/web2c/luatexdir/dvi/dvigen.w b/Build/source/texk/web2c/luatexdir/dvi/dvigen.w index 07cf7ccc0cb..a2e2e215a1f 100644 --- a/Build/source/texk/web2c/luatexdir/dvi/dvigen.w +++ b/Build/source/texk/web2c/luatexdir/dvi/dvigen.w @@ -1,6 +1,6 @@ % dvigen.w % -% Copyright 2009-2012 Taco Hoekwater <taco@@luatex.org> +% Copyright 2009-2013 Taco Hoekwater <taco@@luatex.org> % % This file is part of LuaTeX. % @@ -30,8 +30,8 @@ @ Initial identification of this file, and the needed headers. @c static const char _svn_version[] = - "$Id: dvigen.w 4576 2013-02-08 20:42:57Z hhenkel $" - "$URL: https://foundry.supelec.fr/svn/luatex/tags/beta-0.76.0/source/texk/web2c/luatexdir/dvi/dvigen.w $"; + "$Id: dvigen.w 4679 2013-12-19 15:47:53Z luigi $" + "$URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/dvi/dvigen.w $"; #include "ptexlib.h" @@ -1068,8 +1068,9 @@ void dvi_place_rule(PDF pdf, halfword q, scaledpos size) dvi_four(size.h); } -void dvi_place_glyph(PDF pdf, internal_font_number f, int c) +void dvi_place_glyph(PDF pdf, internal_font_number f, int c, int ex) { + /* TODO: do something on ex, select font (if possible) */ scaled_whd ci; synch_dvi_with_pos(pdf->posstruct->pos); if (f != pdf->f_cur) { |