summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-12-17 07:37:53 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-12-17 07:37:53 +0000
commitcf08549187fffa624f0714e4791924f9828165b7 (patch)
treee8e195b1a14e60197e1fa06014a776861f5726e2 /Build/source/texk
parent2bfa86dabfb873dc69cd06e451227edbd60463ba (diff)
LuaTeX: Correct a typo and ask for clarification
git-svn-id: svn://tug.org/texlive/trunk@35850 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/texnodes.w8
1 files changed, 2 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/texnodes.w b/Build/source/texk/web2c/luatexdir/tex/texnodes.w
index 411deb9af5c..4a11d3510b0 100644
--- a/Build/source/texk/web2c/luatexdir/tex/texnodes.w
+++ b/Build/source/texk/web2c/luatexdir/tex/texnodes.w
@@ -2290,7 +2290,7 @@ void set_attribute(halfword n, int i, int val)
vlink(node_attr(n)) = p;
return;
}
- /* we check if we have this attribute already and quite if the value stays the same */
+ /* we check if we have this attribute already and quit if the value stays the same */
assert(vlink(p) != null);
while (vlink(p) != null) {
int t = attribute_id(vlink(p));
@@ -2312,7 +2312,7 @@ void set_attribute(halfword n, int i, int val)
} else if (attr_list_ref(p) == 1) {
/* this can really happen HH-LS */
if (p == attr_list_cache) {
- /*
+ /* FIXME: C code and normal text inside the same comment (PB)
attr_list_cache = cache_disabled;
or (saved a list creation):
@@ -2333,7 +2333,6 @@ void set_attribute(halfword n, int i, int val)
attr_list_ref(p) = 1;
}
-
/* we go to position j in the list */
while (j-- > 0)
p = vlink(p);
@@ -2349,9 +2348,6 @@ void set_attribute(halfword n, int i, int val)
}
-
-
-
@ @c
int unset_attribute(halfword n, int i, int val)
{