texlive[65743] trunk: Fix typos (thanks to J.

commits+lscarso at tug.org commits+lscarso at tug.org
Mon Feb 6 08:54:37 CET 2023


Revision: 65743
          http://tug.org/svn/texlive?view=revision&revision=65743
Author:   lscarso
Date:     2023-02-06 08:54:36 +0100 (Mon, 06 Feb 2023)
Log Message:
-----------
Fix typos (thanks to J. Friedrich).

Modified Paths:
--------------
    trunk/Build/source/texk/web2c/luatexdir/ChangeLog
    trunk/Build/source/texk/web2c/luatexdir/luatex.c
    trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
    trunk/Master/texmf-dist/doc/luatex/base/luatex-backend.tex
    trunk/Master/texmf-dist/doc/luatex/base/luatex-tex.tex
    trunk/Master/texmf-dist/doc/luatex/base/luatex.pdf

Modified: trunk/Build/source/texk/web2c/luatexdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/ChangeLog	2023-02-06 00:49:14 UTC (rev 65742)
+++ trunk/Build/source/texk/web2c/luatexdir/ChangeLog	2023-02-06 07:54:36 UTC (rev 65743)
@@ -1,3 +1,6 @@
+2023-02-05  Luigi Scarso <luigi.scarso at gmail.com> 
+    *  Fix typos (thanks to J. Friedrich) 
+
 2023-01-24  Luigi Scarso <luigi.scarso at gmail.com> 
     *  fix for r2l multiline link etc rectangles (H.Hagen)
 

Modified: trunk/Build/source/texk/web2c/luatexdir/luatex.c
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/luatex.c	2023-02-06 00:49:14 UTC (rev 65742)
+++ trunk/Build/source/texk/web2c/luatexdir/luatex.c	2023-02-06 07:54:36 UTC (rev 65743)
@@ -329,7 +329,7 @@
     free(buf);
 
     /*
-        Is *cmdname listed in a texmf.cnf vriable as shell_escape_commands =
+        Is *cmdname listed in a texmf.cnf variable as shell_escape_commands =
         foo,bar,... ?
     */
     p = cmdlist;

Modified: trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
===================================================================
--- trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h	2023-02-06 00:49:14 UTC (rev 65742)
+++ trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h	2023-02-06 07:54:36 UTC (rev 65743)
@@ -1,4 +1,4 @@
 #ifndef luatex_svn_revision_h
 #define luatex_svn_revision_h
-#define luatex_svn_revision 7557
+#define luatex_svn_revision 7558
 #endif

Modified: trunk/Master/texmf-dist/doc/luatex/base/luatex-backend.tex
===================================================================
--- trunk/Master/texmf-dist/doc/luatex/base/luatex-backend.tex	2023-02-06 00:49:14 UTC (rev 65742)
+++ trunk/Master/texmf-dist/doc/luatex/base/luatex-backend.tex	2023-02-06 07:54:36 UTC (rev 65743)
@@ -739,7 +739,7 @@
 
 \stopsubsection
 
-\startsubsection[title={\type {get[from][dictionary|array|stream]}}]
+\startsubsection[title={\type {get[dictionary|array|stream]}}]
 
 \libindex {getdictionary} \libindex {getfromdictionary}
 \libindex {getarray}      \libindex {getfromarray}
@@ -775,7 +775,7 @@
 
 \stopsubsection
 
-\startsubsection[title={\type {[open|close|readfrom|whole|]stream}}]
+\startsubsection[title={\type {[open|close|readfrom|readfromwhole]stream}}]
 
 \libindex {openstream}
 \libindex {closestream}

Modified: trunk/Master/texmf-dist/doc/luatex/base/luatex-tex.tex
===================================================================
--- trunk/Master/texmf-dist/doc/luatex/base/luatex-tex.tex	2023-02-06 00:49:14 UTC (rev 65742)
+++ trunk/Master/texmf-dist/doc/luatex/base/luatex-tex.tex	2023-02-06 07:54:36 UTC (rev 65743)
@@ -1379,8 +1379,8 @@
 The first one returns the name only, the second one reports the size too.
 
 \startfunctioncall
-tex.print(tex.fontname(tex.fontname))
-tex.print(tex.fontname(tex.fontidentidier))
+tex.print(tex.fontidentifier(1))
+tex.print(tex.fontname(1))
 \stopfunctioncall
 
 \subsubsection{\type {sp}}
@@ -1412,29 +1412,29 @@
 \stopitem
 \stopitemize
 
-\subsubsection{\type {tex.getlinenumber} and \type {tex.setlinenumber}}
+%\subsubsection{\type {tex.getlinenumber} and \type {tex.setlinenumber}}
+%
+%\libindex{getlinenumber}
+%\libindex{setlinenumber}
+%
+%You can mess with the current line number:
+%
+%\startfunctioncall
+%local n = tex.getlinenumber()
+%tex.setlinenumber(n+10)
+%\stopfunctioncall
+%
+%which can be shortcut to:
+%
+%\startfunctioncall
+%tex.setlinenumber(10,true)
+%\stopfunctioncall
+%
+%This might be handy when you have a callback that read numbers from a file and
+%combines them in one line (in which case an error message probably has to refer
+%to the original line). Interference with \TEX's internal handling of numbers is
+%of course possible.
 
-\libindex{getlinenumber}
-\libindex{setlinenumber}
-
-You can mess with the current line number:
-
-\startfunctioncall
-local n = tex.getlinenumber()
-tex.setlinenumber(n+10)
-\stopfunctioncall
-
-which can be shortcut to:
-
-\startfunctioncall
-tex.setlinenumber(10,true)
-\stopfunctioncall
-
-This might be handy when you have a callback that read numbers from a file and
-combines them in one line (in which case an error message probably has to refer
-to the original line). Interference with \TEX's internal handling of numbers is
-of course possible.
-
 \subsubsection{\type {error} and \type {show_context}}
 
 \topicindex{errors}

Modified: trunk/Master/texmf-dist/doc/luatex/base/luatex.pdf
===================================================================
(Binary files differ)



More information about the tex-live-commits mailing list.