summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_tex@freenet.de>2023-07-13 23:02:15 +0000
committerAndreas Scherer <andreas_tex@freenet.de>2023-07-13 23:02:15 +0000
commitf4fbaca1ad9b3f2aef10a1efe2c9f242bfd8da0d (patch)
tree3e0b95f16e71064be40b4fd22830590b47b0cb8a /Build
parentf6ce9086ac128a4aa91f487348c662f76541b4f6 (diff)
[CWEB] Move TeX part for push_level function.
git-svn-id: svn://tug.org/texlive/trunk@67624 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/cwebdir/ctwill-mini.ch10
-rw-r--r--Build/source/texk/web2c/cwebdir/cweave.w10
2 files changed, 11 insertions, 9 deletions
diff --git a/Build/source/texk/web2c/cwebdir/ctwill-mini.ch b/Build/source/texk/web2c/cwebdir/ctwill-mini.ch
index a35ccd6f9a6..015782310ec 100644
--- a/Build/source/texk/web2c/cwebdir/ctwill-mini.ch
+++ b/Build/source/texk/web2c/cwebdir/ctwill-mini.ch
@@ -1592,13 +1592,15 @@ Section 224.
Section 227.
@x
-@ @c
-static void
+@ To insert token-list |p| into the output, the |push_level| subroutine
+@y
+@r @ To insert token-list |p| into the output, the |push_level| subroutine
+@z
+
+@x
push_level( /* suspends the current level */
text_pointer p)
@y
-@r @ @c
-static void
push_level( /* suspends the current level */
text_pointer p)
@-push_level@>
diff --git a/Build/source/texk/web2c/cwebdir/cweave.w b/Build/source/texk/web2c/cwebdir/cweave.w
index 59aa484cce4..9affe225013 100644
--- a/Build/source/texk/web2c/cwebdir/cweave.w
+++ b/Build/source/texk/web2c/cwebdir/cweave.w
@@ -3790,15 +3790,15 @@ static stack_pointer max_stack_ptr; /* largest value assumed by |stack_ptr| */
@ @<Set init...@>=
max_stack_ptr=stack;
+@ @<Predecl...@>=
+static void push_level(text_pointer);@/
+static void pop_level(void);
+
@ To insert token-list |p| into the output, the |push_level| subroutine
is called; it saves the old level of output and gets a new one going.
The value of |cur_mode| is not changed.
-@<Predecl...@>=
-static void push_level(text_pointer);@/
-static void pop_level(void);
-
-@ @c
+@c
static void
push_level( /* suspends the current level */
text_pointer p)