diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2007-07-20 16:25:44 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2007-07-20 16:25:44 +0000 |
commit | 09466571e703ff3406a68cb9237cd86c2df23290 (patch) | |
tree | 4486466424f166f3c92002271269dc147d9275d4 | |
parent | 5b600323b6af9854145c7348821927747260c1df (diff) |
update to match changes in tex.ch
git-svn-id: svn://tug.org/texlive/trunk@4639 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/xetexdir/xetex-new.ch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/xetexdir/xetex-new.ch b/Build/source/texk/web2c/xetexdir/xetex-new.ch index 2b6f69f1f5f..006ff12d1f2 100644 --- a/Build/source/texk/web2c/xetexdir/xetex-new.ch +++ b/Build/source/texk/web2c/xetexdir/xetex-new.ch @@ -2140,7 +2140,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 @@ -2158,7 +2158,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 @@ -2175,7 +2175,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 @@ -2226,19 +2226,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; |