texlive[63490] Build/source/texk/web2c: [CWEB] Release 4.8.

commits+ascherer at tug.org commits+ascherer at tug.org
Sun Jun 5 16:27:22 CEST 2022


Revision: 63490
          http://tug.org/svn/texlive?view=revision&revision=63490
Author:   ascherer
Date:     2022-06-05 16:27:22 +0200 (Sun, 05 Jun 2022)
Log Message:
-----------
[CWEB] Release 4.8.

This new release provides the following features:

* @<Code sections@> can be used freely in any #if -- #elif -- #else --
  #endif preprocessor branches without bashing the debugger

* The GCC compiler can be invoked with option -Wimplicit-fallthrough=2
  on all CWEB code modules and will acknowledge /* fall through */
  comments in the tangled C code

* Simple C casts like '(double)x' are formatted with non-breaking small
  spaces as '(double)\,x' in the woven TeX output

* The HINT boolean macros are now in lowercase (as in ifhint.tex)

* Comma-separated lists of variable declarations are formatted in
  accordance with function parameter lists and enumerations, i.e.,
  comma is handled in math-mode with associated small spacing

and it fixes these bugs:

* Section @<Preprocessor definitions@> isn't overprinted (in PDF)

* Trivial CWEB code is formatted correctly (issue #36)

* Nested type definitions are recognized (issue #34)

Major remaining bug (as of CWEB 4.3.1):

* Issue #38 as described earlier

Modified Paths:
--------------
    trunk/Build/source/texk/web2c/ChangeLog
    trunk/Build/source/texk/web2c/ctangleboot.cin
    trunk/Build/source/texk/web2c/cwebdir/ChangeLog
    trunk/Build/source/texk/web2c/cwebdir/Makefile
    trunk/Build/source/texk/web2c/cwebdir/comm-mac.ch
    trunk/Build/source/texk/web2c/cwebdir/comm-mini.ch
    trunk/Build/source/texk/web2c/cwebdir/comm-ql.ch
    trunk/Build/source/texk/web2c/cwebdir/comm-w2c.ch
    trunk/Build/source/texk/web2c/cwebdir/comm-w2c.h
    trunk/Build/source/texk/web2c/cwebdir/common.h
    trunk/Build/source/texk/web2c/cwebdir/common.w
    trunk/Build/source/texk/web2c/cwebdir/ctang-bs.ch
    trunk/Build/source/texk/web2c/cwebdir/ctang-pc.ch
    trunk/Build/source/texk/web2c/cwebdir/ctang-ql.ch
    trunk/Build/source/texk/web2c/cwebdir/ctang-vms.ch
    trunk/Build/source/texk/web2c/cwebdir/ctang-w2c.ch
    trunk/Build/source/texk/web2c/cwebdir/ctang-w32.ch
    trunk/Build/source/texk/web2c/cwebdir/ctangle.c
    trunk/Build/source/texk/web2c/cwebdir/ctangle.w
    trunk/Build/source/texk/web2c/cwebdir/ctwill-w2c.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-bs.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-pc.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-ql.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-vms.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-w2c.ch
    trunk/Build/source/texk/web2c/cwebdir/cweav-w32.ch
    trunk/Build/source/texk/web2c/cwebdir/cweave.w
    trunk/Build/source/texk/web2c/cwebdir/cwebmac.tex
    trunk/Build/source/texk/web2c/cwebdir/cwebman-w2c.ch
    trunk/Build/source/texk/web2c/cwebdir/cwebman.tex
    trunk/Build/source/texk/web2c/cwebdir/po/cweb-tl.pot
    trunk/Build/source/texk/web2c/cwebdir/po/cweb.pot
    trunk/Build/source/texk/web2c/cwebdir/po/de/cweb-tl.po
    trunk/Build/source/texk/web2c/cwebdir/po/de/cweb.po
    trunk/Build/source/texk/web2c/cwebdir/po/it/cweb.po
    trunk/Build/source/texk/web2c/cwebdir/prod-cweave.w
    trunk/Build/source/texk/web2c/cwebdir/prod-twill.w
    trunk/Build/source/texk/web2c/cwebdir/prod.w
    trunk/Build/source/texk/web2c/man/ChangeLog
    trunk/Build/source/texk/web2c/man/ctwill.man

Modified: trunk/Build/source/texk/web2c/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/ChangeLog	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/ChangeLog	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,3 +1,7 @@
+2022-06-05  Andreas Scherer  <https://ascherer.github.io>
+
+	* ctangleboot.cin: CWEB 4.8 release.
+
 2022-05-06  TANAKA Takuji  <ttk at t-lab.opal.ne.jp>
 
 	* bibtex.ch:

Modified: trunk/Build/source/texk/web2c/ctangleboot.cin
===================================================================
--- trunk/Build/source/texk/web2c/ctangleboot.cin	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/ctangleboot.cin	2022-06-05 14:27:22 UTC (rev 63490)
@@ -28,7 +28,7 @@
 /*:4*/
 #line 67 "cwebdir/ctangle.w"
 
-#define banner "This is CTANGLE, Version 4.7" \
+#define banner "This is CTANGLE, Version 4.8" \
  \
 
 #define _(s) gettext(s)  \

Modified: trunk/Build/source/texk/web2c/cwebdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ChangeLog	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ChangeLog	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,7 +1,45 @@
 2022-06-05  Andreas Scherer  <https://ascherer.github.io>
 
+	* Makefile,
+	* comm-mac.ch,
+	* comm-mini.ch,
+	* comm-ql.ch,
+	* comm-w2c.ch,
+	* comm-w2c.h,
+	* common.h,
+	* common.w,
+	* ctang-bs.ch,
+	* ctang-pc.ch,
+	* ctang-ql.ch,
+	* ctang-vms.ch,
+	* ctang-w2c.ch,
+	* ctang-w32.ch,
+	* ctangle.c,
+	* ctangle.w,
+	* ctwill-w2c.ch,
+	* cweav-bs.ch,
+	* cweav-pc.ch,
+	* cweav-ql.ch,
+	* cweav-vms.ch,
+	* cweav-w2c.ch,
+	* cweav-w32.ch,
 	* cweave.w,
+	* cwebmac.tex,
 	* cwebman-w2c.ch,
+	* cwebman.tex,
+	* po/cweb-tl.pot,
+	* po/cweb.pot,
+	* po/de/cweb-tl.po,
+	* po/de/cweb.po,
+	* po/it/cweb.po,
+	* prod-cweave.w,
+	* prod-twill.w,
+	* prod.w: CWEB 4.8 release.
+
+2022-06-05  Andreas Scherer  <https://ascherer.github.io>
+
+	* cweave.w,
+	* cwebman-w2c.ch,
 	* cwebman.tex: Update borderline cases.
 
 2022-06-04  Andreas Scherer  <https://ascherer.github.io>

Modified: trunk/Build/source/texk/web2c/cwebdir/Makefile
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/Makefile	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/Makefile	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,6 +1,6 @@
 # This file is part of CWEB.
 # It is distributed WITHOUT ANY WARRANTY, express or implied.
-# Version 4.7 --- February 2022
+# Version 4.8 --- June 2022
 
 # Copyright (C) 1987,1990,1993,2000 Silvio Levy and Donald E. Knuth
 

Modified: trunk/Build/source/texk/web2c/cwebdir/comm-mac.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/comm-mac.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/comm-mac.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -4,9 +4,9 @@
 (Contributed 13 Oct 2000 by AndPio at aol.com; slightly edited by Don Knuth)
 
 @x in limbo, change the title page document to specify Mac version
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
 @y
-  \centerline{(Version 4.7 for MacOS)}
+  \centerline{(Version 4.8 for MacOS)}
 @z
 
 @x section 23: Make input_ln accept \n, \r, \n\r, or \r\n as line endings

Modified: trunk/Build/source/texk/web2c/cwebdir/comm-mini.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/comm-mini.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/comm-mini.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,9 +1,9 @@
 Limbo.
 
 @x
-\def\title{Common code for CTANGLE and CWEAVE (Version 4.7 [CWEBbin 2022])}
+\def\title{Common code for CTANGLE and CWEAVE (Version 4.8 [CWEBbin 2022])}
 @y
-\def\title{COMMON (Version 4.7 [CWEBbin 2022])}
+\def\title{COMMON (Version 4.8 [CWEBbin 2022])}
 \def\contentspagenumber{0}
 @z
 

Modified: trunk/Build/source/texk/web2c/cwebdir/comm-ql.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/comm-ql.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/comm-ql.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -10,12 +10,12 @@
 @x
 \def\v{\char'174} % vertical (|) in typewriter font
 
-\def\title{Common code for CTANGLE and CWEAVE (Version 4.7)}
+\def\title{Common code for CTANGLE and CWEAVE (Version 4.8)}
 \def\topofcontents{\null\vfill
   \centerline{\titlefont Common code for {\ttitlefont CTANGLE} and
     {\ttitlefont CWEAVE}}
   \vskip 15pt
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
   \vfill}
 \def\botofcontents{\vfill
 \noindent
@@ -22,12 +22,12 @@
 @y
 \def\v{\char'174} % vertical (|) in typewriter font
 
-\def\title{Common code for CTANGLE and CWEAVE (QL Version 4.7)}
+\def\title{Common code for CTANGLE and CWEAVE (QL Version 4.8)}
 \def\topofcontents{\null\vfill
   \centerline{\titlefont Common code for {\ttitlefont CTANGLE} and
     {\ttitlefont CWEAVE}}
   \vskip 15pt
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
   \vfill}
 \def\botofcontents{\vfill
 \noindent

Modified: trunk/Build/source/texk/web2c/cwebdir/comm-w2c.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/comm-w2c.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/comm-w2c.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -17,16 +17,16 @@
 @q Please send comments, suggestions, etc. to tex-k@@tug.org.            @>
 
 @x
-\def\title{Common code for CTANGLE and CWEAVE (Version 4.7)}
+\def\title{Common code for CTANGLE and CWEAVE (Version 4.8)}
 @y
 \def\Kpathsea/{{\mc KPATHSEA\spacefactor1000}} \ifacro\sanitizecommand\Kpathsea{KPATHSEA}\fi
-\def\title{Common code for CTANGLE and CWEAVE (4.7 [\TeX~Live])}
+\def\title{Common code for CTANGLE and CWEAVE (4.8 [\TeX~Live])}
 @z
 
 @x
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
 @y
-  \centerline{(Version 4.7 [\TeX~Live])}
+  \centerline{(Version 4.8 [\TeX~Live])}
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/comm-w2c.h
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/comm-w2c.h	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/comm-w2c.h	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022 (works also with later versions)
+% Version 4.8 --- June 2022 (works also with later versions)
 
 % Copyright (C) 1987,1990,1993 Silvio Levy and Donald E. Knuth
 

Modified: trunk/Build/source/texk/web2c/cwebdir/common.h
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/common.h	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/common.h	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022 (works also with later versions)
+% Version 4.8 --- June 2022 (works also with later versions)
 
 % Copyright (C) 1987,1990,1993 Silvio Levy and Donald E. Knuth
 

Modified: trunk/Build/source/texk/web2c/cwebdir/common.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/common.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/common.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 
 % Copyright (C) 1987,1990,1993,2000 Silvio Levy and Donald E. Knuth
 
@@ -22,12 +22,12 @@
 
 \def\v{\char'174} % vertical (|) in typewriter font
 
-\def\title{Common code for CTANGLE and CWEAVE (Version 4.7)}
+\def\title{Common code for CTANGLE and CWEAVE (Version 4.8)}
 \def\topofcontents{\null\vfill
   \centerline{\titlefont Common code for {\ttitlefont CTANGLE} and
     {\ttitlefont CWEAVE}}
   \vskip 15pt
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
   \vfill}
 \def\botofcontents{\vfill
 \noindent

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-bs.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-bs.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-bs.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -17,12 +17,12 @@
 The ``banner line'' defined here should be changed whenever \.{CTANGLE}
 is modified.
 
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
 The ``banner line'' defined here should be changed whenever \.{CTANGLE}
 is modified.
 
- at d banner "This is CTANGLE (Version 4.7pc/big)"
+ at d banner "This is CTANGLE (Version 4.8pc/big)"
 @z
 
 

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-pc.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-pc.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-pc.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -9,9 +9,9 @@
 alternate change files with -bs suffix instead of -pc.
 
 @x section 1
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
- at d banner "This is CTANGLE (Version 4.7pc)"
+ at d banner "This is CTANGLE (Version 4.8pc)"
 @z
 @x section 17
 @d max_bytes 100000 /* the number of bytes in identifiers,

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-ql.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-ql.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-ql.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -7,15 +7,15 @@
 
 
 @x
-\def\title{CTANGLE (Version 4.7)}
+\def\title{CTANGLE (Version 4.8)}
 @y
-\def\title{CTANGLE (QL Version 4.7)}
+\def\title{CTANGLE (QL Version 4.8)}
 @z
 
 @x section 1
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
- at d banner "This is CTANGLE (QL Version 4.7)"
+ at d banner "This is CTANGLE (QL Version 4.8)"
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-vms.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-vms.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-vms.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -10,9 +10,9 @@
 (these changes not necessary for initial bootstrapping)
 
 @x section 1 (01-FEB-1992 ST)
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
- at d banner "This is CTANGLE (VAX/VMS Version 4.7)"
+ at d banner "This is CTANGLE (VAX/VMS Version 4.8)"
 @z
 
 @x section 4 (01-FEB-1992 ST)

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-w2c.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-w2c.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-w2c.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -17,15 +17,15 @@
 @q Please send comments, suggestions, etc. to tex-k@@tug.org.            @>
 
 @x
-\def\title{CTANGLE (Version 4.7)}
+\def\title{CTANGLE (Version 4.8)}
 @y
-\def\title{CTANGLE (Version 4.7 [\TeX~Live])}
+\def\title{CTANGLE (Version 4.8 [\TeX~Live])}
 @z
 
 @x
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
 @y
-  \centerline{(Version 4.7 [\TeX~Live])}
+  \centerline{(Version 4.8 [\TeX~Live])}
 @z
 
 @x
@@ -41,9 +41,9 @@
 @z
 
 @x
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
- at d banner "This is CTANGLE, Version 4.7"
+ at d banner "This is CTANGLE, Version 4.8"
   /* will be extended by the \TeX~Live |versionstring| */
 @z
 

Modified: trunk/Build/source/texk/web2c/cwebdir/ctang-w32.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctang-w32.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctang-w32.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -4,9 +4,9 @@
 Changes necessary for compiling with Borland C/C++
 
 @x section 1
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 @y
- at d banner "This is CTANGLE (Version 4.7win32)"
+ at d banner "This is CTANGLE (Version 4.8win32)"
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/ctangle.c
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctangle.c	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctangle.c	2022-06-05 14:27:22 UTC (rev 63490)
@@ -15,7 +15,7 @@
 /*:4*/
 #line 67 "ctangle.w"
 
-#define banner "This is CTANGLE (Version 4.7)" \
+#define banner "This is CTANGLE (Version 4.8)" \
 
 #define ctangle false
 #define cweave true \

Modified: trunk/Build/source/texk/web2c/cwebdir/ctangle.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctangle.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctangle.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 
 % Copyright (C) 1987,1990,1993,2000 Silvio Levy and Donald E. Knuth
 
@@ -27,11 +27,11 @@
 \mathchardef\RA="3221 % right arrow
 \mathchardef\BA="3224 % double arrow
 
-\def\title{CTANGLE (Version 4.7)}
+\def\title{CTANGLE (Version 4.8)}
 \def\topofcontents{\null\vfill
   \centerline{\titlefont The {\ttitlefont CTANGLE} processor}
   \vskip 15pt
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
   \vfill}
 \def\botofcontents{\vfill
 \noindent
@@ -61,7 +61,7 @@
 The ``banner line'' defined here should be changed whenever \.{CTANGLE}
 is modified.
 
- at d banner "This is CTANGLE (Version 4.7)"
+ at d banner "This is CTANGLE (Version 4.8)"
 
 @c
 @<Include files@>@/

Modified: trunk/Build/source/texk/web2c/cwebdir/ctwill-w2c.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/ctwill-w2c.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/ctwill-w2c.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -35,9 +35,9 @@
 @z
 
 @x
-\def\title{CWEAVE (Version 4.7)}
+\def\title{CWEAVE (Version 4.8)}
 @y
-\def\title{CTWILL (Version 4.7 [\TeX~Live])}
+\def\title{CTWILL (Version 4.8 [\TeX~Live])}
 @z
 
 @x
@@ -47,9 +47,9 @@
 @z
 
 @x
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
 @y
-  \centerline{(Version 4.7 [\TeX~Live])}
+  \centerline{(Version 4.8 [\TeX~Live])}
 @z
 
 @x
@@ -76,7 +76,7 @@
 The ``banner line'' defined here should be changed whenever \.{CWEAVE}
 is modified.
 
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
 This is the \.{CTWILL} program by D. E. Knuth, based
 on \.{CWEAVE} by Silvio Levy and D.~E. Knuth. It is also based on
@@ -100,7 +100,7 @@
 The ``banner line'' defined here should be changed whenever \.{CTWILL} is
 modified. The version number parallels the corresponding version of \.{CWEAVE}.
 
- at d banner "This is CTWILL, Version 4.7"
+ at d banner "This is CTWILL, Version 4.8"
   /* will be extended by the \TeX~Live |versionstring| */
 @z
 

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-bs.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-bs.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-bs.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -20,12 +20,12 @@
 The ``banner line'' defined here should be changed whenever \.{CWEAVE}
 is modified.
 
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
 The ``banner line'' defined here should be changed whenever \.{CWEAVE}
 is modified.
 
- at d banner "This is CWEAVE (Version 4.7pc/big)"
+ at d banner "This is CWEAVE (Version 4.8pc/big)"
 @z
 
 

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-pc.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-pc.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-pc.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -11,9 +11,9 @@
 change files that have -bs in their name instead of -pc.)
 
 @x section 1
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
- at d banner "This is CWEAVE (Version 4.7pc)"
+ at d banner "This is CWEAVE (Version 4.8pc)"
 @z
 
 @x section 17

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-ql.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-ql.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-ql.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -7,15 +7,15 @@
 
 
 @x
-\def\title{CWEAVE (Version 4.7)}
+\def\title{CWEAVE (Version 4.8)}
 @y
-\def\title{CWEAVE (QL Version 4.7)}
+\def\title{CWEAVE (QL Version 4.8)}
 @z
 
 @x section 1
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
- at d banner "This is CWEAVE (QL Version 4.7)"
+ at d banner "This is CWEAVE (QL Version 4.8)"
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-vms.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-vms.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-vms.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -13,9 +13,9 @@
 (also modified by Don Knuth to keep version numbers uptodate)
 
 @x section 1 (01-FEB-1992 ST)
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
- at d banner "This is CWEAVE (VAX/VMS Version 4.7)"
+ at d banner "This is CWEAVE (VAX/VMS Version 4.8)"
 @z
 
 @x section 4 (01-FEB-1992 ST)

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-w2c.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-w2c.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-w2c.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -17,15 +17,15 @@
 @q Please send comments, suggestions, etc. to tex-k@@tug.org.            @>
 
 @x
-\def\title{CWEAVE (Version 4.7)}
+\def\title{CWEAVE (Version 4.8)}
 @y
-\def\title{CWEAVE (Version 4.7 [\TeX~Live])}
+\def\title{CWEAVE (Version 4.8 [\TeX~Live])}
 @z
 
 @x
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
 @y
-  \centerline{(Version 4.7 [\TeX~Live])}
+  \centerline{(Version 4.8 [\TeX~Live])}
 @z
 
 @x
@@ -41,9 +41,9 @@
 @z
 
 @x
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
- at d banner "This is CWEAVE, Version 4.7"
+ at d banner "This is CWEAVE, Version 4.8"
   /* will be extended by the \TeX~Live |versionstring| */
 @z
 

Modified: trunk/Build/source/texk/web2c/cwebdir/cweav-w32.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweav-w32.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweav-w32.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,9 +2,9 @@
 (Contributed by Fabrice Popineau, February 2002)
 
 @x section 1
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 @y
- at d banner "This is CWEAVE (Version 4.7win32)"
+ at d banner "This is CWEAVE (Version 4.8win32)"
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/cweave.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cweave.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cweave.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 
 % Copyright (C) 1987,1990,1993,2000 Silvio Levy and Donald E. Knuth
 
@@ -32,11 +32,11 @@
 \def\skipxTeX{\\{skip\_\TEX/}}
 \def\copyxTeX{\\{copy\_\TEX/}}
 
-\def\title{CWEAVE (Version 4.7)}
+\def\title{CWEAVE (Version 4.8)}
 \def\topofcontents{\null\vfill
   \centerline{\titlefont The {\ttitlefont CWEAVE} processor}
   \vskip 15pt
-  \centerline{(Version 4.7)}
+  \centerline{(Version 4.8)}
   \vfill}
 \def\botofcontents{\vfill
 \noindent
@@ -67,7 +67,7 @@
 The ``banner line'' defined here should be changed whenever \.{CWEAVE}
 is modified.
 
- at d banner "This is CWEAVE (Version 4.7)"
+ at d banner "This is CWEAVE (Version 4.8)"
 
 @c
 @<Include files@>@/

Modified: trunk/Build/source/texk/web2c/cwebdir/cwebmac.tex
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cwebmac.tex	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cwebmac.tex	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,7 +1,7 @@
 % standard macros for CWEB listings (in addition to plain.tex)
-% Version 4.7--- January 2022
+% Version 4.8--- June 2022
 \ifx\renewenvironment\undefined\else\endinput\fi % LaTeX will use other macros
-\xdef\fmtversion{\fmtversion+CWEB4.7}
+\xdef\fmtversion{\fmtversion+CWEB4.8}
 \chardef\cwebversion=4 \chardef\cwebrevision=7
 \newif\ifpdf
 \ifx\pdf+\pdftrue\fi

Modified: trunk/Build/source/texk/web2c/cwebdir/cwebman-w2c.ch
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cwebman-w2c.ch	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cwebman-w2c.ch	2022-06-05 14:27:22 UTC (rev 63490)
@@ -93,17 +93,17 @@
 @z
 
 @x
-\def\runninghead{{\tentt CWEB} USER MANUAL (VERSION 4.7)}
+\def\runninghead{{\tentt CWEB} USER MANUAL (VERSION 4.8)}
 @y
 \def\Kpathsea/{{\mc KPATHSEA\spacefactor1000}}
-\def\runninghead{{\tentt CWEB} USER MANUAL (Version 4.7 [\TeX~Live])}
+\def\runninghead{{\tentt CWEB} USER MANUAL (Version 4.8 [\TeX~Live])}
 @z
 
 @x
-\vskip 18pt\centerline{(Version 4.7 --- February 2022)}
+\vskip 18pt\centerline{(Version 4.8 --- June 2022)}
 @y
-\vskip 18pt\centerline{(Version 4.7 --- February 2022)%
-\footnote*{This document describes the extended \.{CWEB} (Version 4.7 [\TeX~Live]).}}
+\vskip 18pt\centerline{(Version 4.8 --- June 2022)%
+\footnote*{This document describes the extended \.{CWEB} (Version 4.8 [\TeX~Live]).}}
 @z
 
 @x
@@ -321,9 +321,9 @@
 @z
 
 @x
-  \.{ { }\\vskip 15pt \\centerline\{(Version 4.7)\}{ }\\vfill\}}\cr}$$
+  \.{ { }\\vskip 15pt \\centerline\{(Version 4.8)\}{ }\\vfill\}}\cr}$$
 @y
-  \.{ { }\\vskip 15pt \\centerline\{(Version 4.7)\}{ }\\vfill\}}\cr}$$
+  \.{ { }\\vskip 15pt \\centerline\{(Version 4.8)\}{ }\\vfill\}}\cr}$$
 @z
 
 @x

Modified: trunk/Build/source/texk/web2c/cwebdir/cwebman.tex
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/cwebman.tex	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/cwebman.tex	2022-06-05 14:27:22 UTC (rev 63490)
@@ -35,7 +35,7 @@
 
 \def\lheader{\mainfont\the\pageno\hfill\sc\runninghead\hfill}
 \def\rheader{\hfill\sc\runninghead\hfill\mainfont\the\pageno}
-\def\runninghead{{\tentt CWEB} USER MANUAL (VERSION 4.7)}
+\def\runninghead{{\tentt CWEB} USER MANUAL (VERSION 4.8)}
 
 % This verbatim mode assumes that ! marks are !! in the text being copied.
 \def\verbatim{\begingroup
@@ -49,7 +49,7 @@
 \null\vfill
 \centerline{\titlefont The {\ttitlefont CWEB} System of
     Structured Documentation}
-\vskip 18pt\centerline{(Version 4.7 --- February 2022)}
+\vskip 18pt\centerline{(Version 4.8 --- June 2022)}
 \vskip 24pt
 \centerline{\authorfont Donald E. Knuth and Silvio Levy}
 \vfill
@@ -1598,7 +1598,7 @@
   \.{ { }\\titlefalse \% include headline on the contents page}\cr
   \.{ { }\\def\\rheader\{\\mainfont The \{\\tt CWEAVE\}{ }processor\\hfil\}}\cr
   \.{ { }\\centerline\{\\titlefont The \{\\ttitlefont CWEAVE\}{ }processor\}}\cr
-  \.{ { }\\vskip 15pt \\centerline\{(Version 4.7)\}{ }\\vfill\}}\cr}$$
+  \.{ { }\\vskip 15pt \\centerline\{(Version 4.8)\}{ }\\vfill\}}\cr}$$
 Redefining \.{\\rheader}, which is the headline for right-hand pages,
 suffices in this case to put the desired information at the top of the
 contents page.

Modified: trunk/Build/source/texk/web2c/cwebdir/po/cweb-tl.pot
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/po/cweb-tl.pot	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/po/cweb-tl.pot	2022-06-05 14:27:22 UTC (rev 63490)
@@ -30,15 +30,15 @@
 msgstr ""
 
 #: ctang-texlive.ch:39
-msgid "This is CTANGLE, Version 4.7"
+msgid "This is CTANGLE, Version 4.8"
 msgstr ""
 
 #: ctwill-texlive.ch:39
-msgid "This is CTWILL, Version 4.7"
+msgid "This is CTWILL, Version 4.8"
 msgstr ""
 
 #: cweav-texlive.ch:39
-msgid "This is CWEAVE, Version 4.7"
+msgid "This is CWEAVE, Version 4.8"
 msgstr ""
 
 #: comm-texlive.ch:512

Modified: trunk/Build/source/texk/web2c/cwebdir/po/cweb.pot
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/po/cweb.pot	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/po/cweb.pot	2022-06-05 14:27:22 UTC (rev 63490)
@@ -523,15 +523,15 @@
 msgstr ""
 
 #: ctang-i18n.ch:17
-msgid "This is CTANGLE (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CTANGLE (Version 4.8 [CWEBbin 2022.2])"
 msgstr ""
 
 #: cweav-twill.ch:61
-msgid "This is CTWILL (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CTWILL (Version 4.8 [CWEBbin 2022.2])"
 msgstr ""
 
 #: cweav-i18n.ch:17 cweav-twill.ch:42
-msgid "This is CWEAVE (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CWEAVE (Version 4.8 [CWEBbin 2022.2])"
 msgstr ""
 
 #: cweav-i18n.ch:301 cweav-i18n.ch:309

Modified: trunk/Build/source/texk/web2c/cwebdir/po/de/cweb-tl.po
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/po/de/cweb-tl.po	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/po/de/cweb-tl.po	2022-06-05 14:27:22 UTC (rev 63490)
@@ -33,16 +33,16 @@
 msgstr "%s: Benötige ein bis drei Dateiargumente.\n"
 
 #: ctang-texlive.ch:39
-msgid "This is CTANGLE, Version 4.7"
-msgstr "Dies ist CTANGLE, Version 4.7"
+msgid "This is CTANGLE, Version 4.8"
+msgstr "Dies ist CTANGLE, Version 4.8"
 
 #: ctwill-texlive.ch:39
-msgid "This is CTWILL, Version 4.7"
-msgstr "Dies ist CTWILL, Version 4.7"
+msgid "This is CTWILL, Version 4.8"
+msgstr "Dies ist CTWILL, Version 4.8"
 
 #: cweav-texlive.ch:39
-msgid "This is CWEAVE, Version 4.7"
-msgstr "Dies ist CWEAVE, Version 4.7"
+msgid "This is CWEAVE, Version 4.8"
+msgstr "Dies ist CWEAVE, Version 4.8"
 
 #: comm-texlive.ch:512
 #, c-format

Modified: trunk/Build/source/texk/web2c/cwebdir/po/de/cweb.po
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/po/de/cweb.po	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/po/de/cweb.po	2022-06-05 14:27:22 UTC (rev 63490)
@@ -603,16 +603,16 @@
 msgstr "Sortieren:"
 
 #: ctang-i18n.ch:17
-msgid "This is CTANGLE (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Dies ist CTANGLE (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CTANGLE (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Dies ist CTANGLE (Version 4.8 [CWEBbin 2022.2])"
 
 #: cweav-twill.ch:61
-msgid "This is CTWILL (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Dies ist CTWILL (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CTWILL (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Dies ist CTWILL (Version 4.8 [CWEBbin 2022.2])"
 
 #: cweav-i18n.ch:17 cweav-twill.ch:42
-msgid "This is CWEAVE (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Dies ist CWEAVE (Version 4.7 [CWEBbin 2022.1])"
+msgid "This is CWEAVE (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Dies ist CWEAVE (Version 4.8 [CWEBbin 2022.2])"
 
 #: cweav-i18n.ch:301 cweav-i18n.ch:309
 msgid "buffer"

Modified: trunk/Build/source/texk/web2c/cwebdir/po/it/cweb.po
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/po/it/cweb.po	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/po/it/cweb.po	2022-06-05 14:27:22 UTC (rev 63490)
@@ -598,16 +598,16 @@
 msgstr "Ordinamento:"
 
 #: ctang-i18n.ch:17
-msgid "This is CTANGLE (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Questo è CTANGLE (Versione 4.7 [CWEBbin 2022.1])"
+msgid "This is CTANGLE (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Questo è CTANGLE (Versione 4.8 [CWEBbin 2022.2])"
 
 #: cweav-i18n.ch:17
-msgid "This is CWEAVE (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Questo è CWEAVE (Versione 4.7 [CWEBbin 2022.1])"
+msgid "This is CWEAVE (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Questo è CWEAVE (Versione 4.8 [CWEBbin 2022.2])"
 
 #: cweav-twill.ch:68
-msgid "This is CTWILL (Version 4.7 [CWEBbin 2022.1])"
-msgstr "Questo è CTWILL (Versione 4.7 [CWEBbin 2022.1])"
+msgid "This is CTWILL (Version 4.8 [CWEBbin 2022.2])"
+msgstr "Questo è CTWILL (Versione 4.8 [CWEBbin 2022.2])"
 
 #: cweav-i18n.ch:301 cweav-i18n.ch:309
 msgid "buffer"

Modified: trunk/Build/source/texk/web2c/cwebdir/prod-cweave.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/prod-cweave.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/prod-cweave.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 %
 @ Here is a table of all the productions.  Each production that
 combines two or more consecutive scraps implicitly inserts a {\tt \$}

Modified: trunk/Build/source/texk/web2c/cwebdir/prod-twill.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/prod-twill.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/prod-twill.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 %
 @ Here is a table of all the productions.  Each production that
 combines two or more consecutive scraps implicitly inserts a {\tt \$}

Modified: trunk/Build/source/texk/web2c/cwebdir/prod.w
===================================================================
--- trunk/Build/source/texk/web2c/cwebdir/prod.w	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/cwebdir/prod.w	2022-06-05 14:27:22 UTC (rev 63490)
@@ -2,7 +2,7 @@
 % This program by Silvio Levy and Donald E. Knuth
 % is based on a program by Knuth.
 % It is distributed WITHOUT ANY WARRANTY, express or implied.
-% Version 4.7 --- February 2022
+% Version 4.8 --- June 2022
 %
 @ Here is a table of all the productions.  Each production that
 combines two or more consecutive scraps implicitly inserts a {\tt \$}

Modified: trunk/Build/source/texk/web2c/man/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/man/ChangeLog	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/man/ChangeLog	2022-06-05 14:27:22 UTC (rev 63490)
@@ -1,3 +1,7 @@
+2022-06-05  Andreas Scherer  <https://ascherer.github.io>
+
+	* ctwill.man: CWEB 4.8 release.
+
 2022-03-27  Andreas Scherer  <https://ascherer.github.io>
 
 	* tangle.man,

Modified: trunk/Build/source/texk/web2c/man/ctwill.man
===================================================================
--- trunk/Build/source/texk/web2c/man/ctwill.man	2022-06-05 14:15:25 UTC (rev 63489)
+++ trunk/Build/source/texk/web2c/man/ctwill.man	2022-06-05 14:27:22 UTC (rev 63490)
@@ -14,7 +14,7 @@
 . ftr VB CB
 . ftr VBI CBI
 .\}
-.TH "CTWILL" "1" "February 5, 2022" "Web2c @VERSION@" "General Commands Manual"
+.TH "CTWILL" "1" "June 5, 2022" "Web2c @VERSION@" "General Commands Manual"
 .hy
 .SH NAME
 .PP
@@ -125,7 +125,7 @@
 to be a drop-in replacement for the original package.
 There are, however, a few differences worth noting:
 .IP \[bu] 2
-This version is based on the most recent version of CWEB (4.7).
+This version is based on the most recent version of CWEB (4.8).
 .IP \[bu] 2
 In TeX\ Live the utility programs are prefixed with \f[B]ctwill-\f[R]
 and the macro files with \f[B]ct\f[R] for technical reasons.



More information about the tex-live-commits mailing list.