summaryrefslogtreecommitdiff
path: root/Build/source
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_tex@freenet.de>2023-07-29 12:55:27 +0000
committerAndreas Scherer <andreas_tex@freenet.de>2023-07-29 12:55:27 +0000
commit45239d907718f5ef942ea86302c6f219abe3263d (patch)
tree11a9bb0f35f4498b3a02091de878a10c57ecccd0 /Build/source
parentb6d0a4a6c95b8cc18efbea910c4e868d92f7a9ae (diff)
[CWEB] Fix format in do...while loop.
CWEB learned this decades ago. git-svn-id: svn://tug.org/texlive/trunk@67761 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r--Build/source/texk/web2c/cwebdir/twinx.ch35
1 files changed, 33 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/cwebdir/twinx.ch b/Build/source/texk/web2c/cwebdir/twinx.ch
index 66e5b969ac3..195a332f1d0 100644
--- a/Build/source/texk/web2c/cwebdir/twinx.ch
+++ b/Build/source/texk/web2c/cwebdir/twinx.ch
@@ -143,23 +143,54 @@ Section 11.
}
@z
+Section 12.
+
+@x l.246
+ do@+{
+@y
+ do {
+@z
+
+@x l.256
+ }@+while(fgets(buf,buf_size,f));
+@y
+ } while(fgets(buf,buf_size,f));
+@z
+
@x l.289 C++17 removed 'register' storage class.
while (1) {@+register node *p,*q,*r,*s,*t;
@y
while (1) {@+node *p,*q,*r,*s,*t;
@z
+Section 15.
+
@x l.308 C++17 removed 'register' storage class.
do@+{@+register int d;
@y
-do@+{@+int d;
+do {@+int d;
@z
+@x l.316
+}@+while(1);
+@y
+} while(1);
+@z
+
+Section 16.
+
@x l.323 C++17 removed 'register' storage class.
do@+{@+register int d;
@y
-do@+{@+int d;
+do {@+int d;
@z
+
+@x l.338
+}@+while(1);
+@y
+} while(1);
+@z
+
Section 17.
@x l.347