summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/tex.ch
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-07-15 00:17:42 +0000
committerKarl Berry <karl@freefriends.org>2007-07-15 00:17:42 +0000
commite66e2b69bc912c75aeaa0bd0b32b90ab687fb6da (patch)
tree58a195e561b1d727e6b9f226c31632a7807f86f5 /Build/source/texk/web2c/tex.ch
parentdb3cb6f85ee7c6dfd9d5f2db2fd43d27d7985bc9 (diff)
end of name check, sync constants; from Akira
git-svn-id: svn://tug.org/texlive/trunk@4587 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/tex.ch')
-rw-r--r--Build/source/texk/web2c/tex.ch12
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch
index 49610dc95cb..490c481f9ae 100644
--- a/Build/source/texk/web2c/tex.ch
+++ b/Build/source/texk/web2c/tex.ch
@@ -1934,7 +1934,7 @@ if area_delimiter<>0 then begin
s:=str_start[str_ptr];
t:=str_start[str_ptr]+area_delimiter;
j:=s;
- while (not must_quote) and (j<>t) do begin
+ while (not must_quote) and (j<t) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
if must_quote then begin
@@ -1952,7 +1952,7 @@ s:=str_start[str_ptr]+area_delimiter;
if ext_delimiter=0 then t:=pool_ptr else t:=str_start[str_ptr]+ext_delimiter-1;
must_quote:=false;
j:=s;
-while (not must_quote) and (j<>t) do begin
+while (not must_quote) and (j<t) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
if must_quote then begin
@@ -1969,7 +1969,7 @@ if ext_delimiter<>0 then begin
t:=pool_ptr;
must_quote:=false;
j:=s;
- while (not must_quote) and (j<>t) do begin
+ while (not must_quote) and (j<t) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
if must_quote then begin
@@ -2032,19 +2032,19 @@ begin
must_quote:=false;
if a<>0 then begin
j:=str_start[a];
- while (not must_quote) and (j<>str_start[a+1]) do begin
+ while (not must_quote) and (j<str_start[a+1]) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
end;
if n<>0 then begin
j:=str_start[n];
- while (not must_quote) and (j<>str_start[n+1]) do begin
+ while (not must_quote) and (j<str_start[n+1]) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
end;
if e<>0 then begin
j:=str_start[e];
- while (not must_quote) and (j<>str_start[e+1]) do begin
+ while (not must_quote) and (j<str_start[e+1]) do begin
must_quote:=str_pool[j]=" "; incr(j);
end;
end;