texlive[46385] Build/source/texk/web2c/luatexdir/tex/texnodes.w:

commits+lscarso at tug.org commits+lscarso at tug.org
Fri Jan 19 13:07:30 CET 2018


Revision: 46385
          http://tug.org/svn/texlive?view=revision&revision=46385
Author:   lscarso
Date:     2018-01-19 13:07:30 +0100 (Fri, 19 Jan 2018)
Log Message:
-----------
LuaTeX 1.07.0: more granularity in kern reporting

Modified Paths:
--------------
    trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.w

Modified: trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.w
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.w	2018-01-19 09:46:02 UTC (rev 46384)
+++ trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.w	2018-01-19 12:07:30 UTC (rev 46385)
@@ -3205,11 +3205,17 @@
                 /*  An ``explicit'' kern value is indicated implicitly by an explicit space. */
                 if (subtype(p) != mu_glue) {
                     tprint_esc("kern");
+                    /*
                     if (subtype(p) != normal)
                         print_char(' ');
+                    */
                     print_scaled(width(p));
-                    if (subtype(p) == accent_kern)
-                        tprint(" (for accent)");
+                    if (subtype(p) == font_kern)
+                        tprint(" (font)");
+                    else if (subtype(p) == italic_kern)
+                        tprint(" (italic)");
+                    else if (subtype(p) == accent_kern)
+                        tprint(" (accent)");
                 } else {
                     tprint_esc("mkern");
                     print_scaled(width(p));



More information about the tex-live-commits mailing list