summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
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)
{