[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Sun, 29 Sep 2024 14:03:24 -0400 (EDT) |
branch: master
commit b99f7bcb6dfaf537f557dfdfb91dd58ef5e168b7
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Jul 6 13:43:55 2024 +0200
* tp/Texinfo/Convert/Plaintext.pm (format_ref): no see for @ref.
---
ChangeLog | 4 +
tp/Texinfo/Convert/Plaintext.pm | 4 +-
.../results/converters_tests/at_commands_in_raw.pl | 2 +-
tp/t/results/converters_tests/commands_in_sc.pl | 4 +-
tp/t/results/converters_tests/commands_in_var.pl | 4 +-
.../converters_tests/ref_error_formatting.pl | 59 +-
tp/t/results/converters_tests/ref_in_sectioning.pl | 64 +-
tp/t/results/converters_tests/refs_formatting.pl | 64 +-
.../some_at_commands_in_ref_nodes.pl | 4 +-
.../converters_tests/spaces_in_empty_node_names.pl | 6 +-
.../converters_tests/spaces_in_node_names.pl | 6 +-
.../converters_tests/things_before_setfilename.pl | 4 +-
.../things_before_setfilename_no_element.pl | 4 +-
tp/t/results/converters_tests/top_in_ref.pl | 59 +-
.../coverage_braces/contain_plain_text_nestings.pl | 2 +-
.../coverage_braces/inforef_too_much_args.pl | 2 +-
.../coverage_braces/ref_in_style_command.pl | 2 +-
tp/t/results/coverage_braces/uref_in_ref.pl | 2 +-
tp/t/results/def/ref_in_def.pl | 6 +-
tp/t/results/float/float_copying.pl | 6 +-
.../float/numbering_captions_listoffloats.pl | 12 +-
tp/t/results/float/ref_to_float.pl | 4 +-
.../formats_encodings/at_commands_in_refs.pl | 54 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../res_plaintext/Copying-and-indices.txt | 8 +-
.../menu/commands_in_nodedescriptionblock.pl | 8 +-
tp/t/results/misc_commands/ref_in_center.pl | 4 +-
tp/t/results/multitable/ref_in_multitable.pl | 18 +-
.../at_commands_glued_in_example.pl | 2 +-
.../at_commands_glued_in_paragraph.pl | 2 +-
...double_recursive_self_section_node_reference.pl | 4 +-
.../double_recursive_self_section_reference.pl | 8 +-
.../sectioning/recursive_self_section_reference.pl | 4 +-
.../res_parser/formatting_plaintext/formatting.txt | 1296 ++++++++++----------
.../formatting.txt | 1296 ++++++++++----------
41 files changed, 1533 insertions(+), 1551 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index cbbd9fb488..c06e78dada 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-07-06 Patrice Dumas <pertusus@free.fr>
+
+ * tp/Texinfo/Convert/Plaintext.pm (format_ref): no see for @ref.
+
2024-07-06 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/Convert/Plaintext.pm (format_ref): use see and See
diff --git a/tp/Texinfo/Convert/Plaintext.pm b/tp/Texinfo/Convert/Plaintext.pm
index 69b38edc36..67233caee5 100644
--- a/tp/Texinfo/Convert/Plaintext.pm
+++ b/tp/Texinfo/Convert/Plaintext.pm
@@ -2016,10 +2016,10 @@ sub format_ref($$$$)
$args[2] = undef;
}
- if ($cmdname eq 'xref') {
+ if ($cmdname eq 'xref' or $cmdname eq 'inforef') {
_convert($self, {'type' => '_stop_upper_case',
'contents' => [{'text' => 'See '}]});
- } else {
+ } elsif ($cmdname eq 'pxref') {
_convert($self, {'type' => '_stop_upper_case',
'contents' => [{'text' => 'see '}]});
}
diff --git a/tp/t/results/converters_tests/at_commands_in_raw.pl
b/tp/t/results/converters_tests/at_commands_in_raw.pl
index 1c5dbd36f8..378e72cdec 100644
--- a/tp/t/results/converters_tests/at_commands_in_raw.pl
+++ b/tp/t/results/converters_tests/at_commands_in_raw.pl
@@ -1420,7 +1420,7 @@ $result_converted{'plaintext'}->{'at_commands_in_raw'} =
'top
See anchor in html::.
- see anchor in tex::.
+ anchor in tex::.
newidx entry
diff --git a/tp/t/results/converters_tests/commands_in_sc.pl
b/tp/t/results/converters_tests/commands_in_sc.pl
index 0d565ce8f8..5ddfd9021a 100644
--- a/tp/t/results/converters_tests/commands_in_sc.pl
+++ b/tp/t/results/converters_tests/commands_in_sc.pl
@@ -818,8 +818,8 @@ $result_converted{'plaintext'}->{'commands_in_sc'} =
'commands in sc
1 chap
******
-A Ñ Å TeX [myimage] see chap:: See (f)node:: see NAME: (argf)ext inverb ÿ MA+TH
-(1) <la> B (a) LB c E <a@c> AB (D)
+A Ñ Å TeX [myimage] chap:: See (f)node:: NAME: (argf)ext inverb ÿ MA+TH (1)
<la>
+B (a) LB c E <a@c> AB (D)
---------- Footnotes ----------
diff --git a/tp/t/results/converters_tests/commands_in_var.pl
b/tp/t/results/converters_tests/commands_in_var.pl
index 039f7e143a..1d5595902b 100644
--- a/tp/t/results/converters_tests/commands_in_var.pl
+++ b/tp/t/results/converters_tests/commands_in_var.pl
@@ -818,8 +818,8 @@ $result_converted{'plaintext'}->{'commands_in_var'} =
'commands in var
1 chap
******
-A Ñ Å TeX [myimage] see chap:: See (f)node:: see NAME: (argf)ext inverb ÿ MA+TH
-(1) <la> B (a) LB c E <a@c> AB (D)
+A Ñ Å TeX [myimage] chap:: See (f)node:: NAME: (argf)ext inverb ÿ MA+TH (1)
<la>
+B (a) LB c E <a@c> AB (D)
---------- Footnotes ----------
diff --git a/tp/t/results/converters_tests/ref_error_formatting.pl
b/tp/t/results/converters_tests/ref_error_formatting.pl
index cc0ccaf07d..0513c1937a 100644
--- a/tp/t/results/converters_tests/ref_error_formatting.pl
+++ b/tp/t/results/converters_tests/ref_error_formatting.pl
@@ -2937,39 +2937,38 @@ $result_floats{'ref_error_formatting'} = {};
-$result_converted{'plaintext'}->{'ref_error_formatting'} = '‘@ref{node}’ see
node::
+$result_converted{'plaintext'}->{'ref_error_formatting'} = '‘@ref{node}’ node::
- ‘@ref{,cross ref name}’ see cross ref name: ‘@ref{,,title}’ see
-title: ‘@ref{,,,file name}’ see (file name):: ‘@ref{,,,,manual}’ see
-():: ‘@ref{node,cross ref name}’ see cross ref name: node
-‘@ref{node,,title}’ see title: node ‘@ref{node,,,file name}’ see (file
-name)node:: ‘@ref{node,,,,manual}’ see ()node:: ‘@ref{node,cross ref
-name,title,}’ see cross ref name: node ‘@ref{node,cross ref name,,file
-name}’ see cross ref name: (file name)node ‘@ref{node,cross ref
-name,,,manual}’ see cross ref name: ()node ‘@ref{node,cross ref
-name,title,file name}’ see cross ref name: (file name)node
-‘@ref{node,cross ref name,title,,manual}’ see cross ref name: ()node
-‘@ref{node,cross ref name,title, file name, manual}’ see cross ref name:
-(file name)node ‘@ref{node,,title,file name}’ see title: (file name)node
-‘@ref{node,,title,,manual}’ see title: ()node ‘@ref{node,,title, file
-name, manual}’ see title: (file name)node ‘@ref{node,,,file
-name,manual}’ see (file name)node:: ‘@ref{,cross ref name,title,}’ see
-cross ref name: ‘@ref{,cross ref name,,file name}’ see cross ref name:
-(file name) ‘@ref{,cross ref name,,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title,file name}’ see cross ref name: (file name)
-‘@ref{,cross ref name,title,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title, file name, manual}’ see cross ref name:
-(file name) ‘@ref{,,title,file name}’ see title: (file name)
-‘@ref{,,title,,manual}’ see title: () ‘@ref{,,title, file name, manual}’
-see title: (file name) ‘@ref{,,,file name,manual}’ see (file name)::
+ ‘@ref{,cross ref name}’ cross ref name: ‘@ref{,,title}’ title:
+‘@ref{,,,file name}’ (file name):: ‘@ref{,,,,manual}’ ()::
+‘@ref{node,cross ref name}’ cross ref name: node ‘@ref{node,,title}’
+title: node ‘@ref{node,,,file name}’ (file name)node::
+‘@ref{node,,,,manual}’ ()node:: ‘@ref{node,cross ref name,title,}’ cross
+ref name: node ‘@ref{node,cross ref name,,file name}’ cross ref name:
+(file name)node ‘@ref{node,cross ref name,,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title,file name}’ cross ref name: (file
+name)node ‘@ref{node,cross ref name,title,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title, file name, manual}’ cross ref
+name: (file name)node ‘@ref{node,,title,file name}’ title: (file
+name)node ‘@ref{node,,title,,manual}’ title: ()node ‘@ref{node,,title,
+file name, manual}’ title: (file name)node ‘@ref{node,,,file
+name,manual}’ (file name)node:: ‘@ref{,cross ref name,title,}’ cross ref
+name: ‘@ref{,cross ref name,,file name}’ cross ref name: (file name)
+‘@ref{,cross ref name,,,manual}’ cross ref name: () ‘@ref{,cross ref
+name,title,file name}’ cross ref name: (file name) ‘@ref{,cross ref
+name,title,,manual}’ cross ref name: () ‘@ref{,cross ref name,title,
+file name, manual}’ cross ref name: (file name) ‘@ref{,,title,file
+name}’ title: (file name) ‘@ref{,,title,,manual}’ title: ()
+‘@ref{,,title, file name, manual}’ title: (file name) ‘@ref{,,,file
+name,manual}’ (file name)::
- ‘@inforef{,cross ref name }’ see cross ref name: ‘@inforef{,,file
-name}’ see (file name):: ‘@inforef{,cross ref name, file name}’ see
-cross ref name: (file name) ‘@inforef{}’ see ::
+ ‘@inforef{,cross ref name }’ See cross ref name: ‘@inforef{,,file
+name}’ See (file name):: ‘@inforef{,cross ref name, file name}’ See
+cross ref name: (file name) ‘@inforef{}’ See ::
- ‘@inforef{node, cross ref name, file name}’ see cross ref name: (file
-name)node ‘@inforef{node}’ see node:: ‘@inforef{node, cross ref name}’
-see cross ref name: node ‘@inforef{node,,file name}’ see (file
+ ‘@inforef{node, cross ref name, file name}’ See cross ref name: (file
+name)node ‘@inforef{node}’ See node:: ‘@inforef{node, cross ref name}’
+See cross ref name: node ‘@inforef{node,,file name}’ See (file
name)node::
';
diff --git a/tp/t/results/converters_tests/ref_in_sectioning.pl
b/tp/t/results/converters_tests/ref_in_sectioning.pl
index b73657458e..541d9b5186 100644
--- a/tp/t/results/converters_tests/ref_in_sectioning.pl
+++ b/tp/t/results/converters_tests/ref_in_sectioning.pl
@@ -2164,57 +2164,57 @@ $result_floats{'ref_in_sectioning'} = {};
-$result_converted{'plaintext'}->{'ref_in_sectioning'} = 'for example see
node:: (see node::) (see (file)Top::)
+$result_converted{'plaintext'}->{'ref_in_sectioning'} = 'for example node::
(see node::) (see (file)Top::)
1 See title: (file name)node.
-2 see node:: just node
- 2.1 for example see node:: (see node::) (see (file)Top::)
- 2.2 see cross ref name: node node, crossref arg2
- 2.3 see ‘title’: node code node, samptitle arg3
- 2.4 see (file name)node:: code node, file name
- 2.5 see ()node:: node and manual
- 2.6 see ()Top:: Top and manual
- 2.7 see ():: no node just manual
- 2.8 see (file name):: no node just file name
- 2.9 see b: (c)a inforef a b c
+2 node:: just node
+ 2.1 for example node:: (see node::) (see (file)Top::)
+ 2.2 cross ref name: node node, crossref arg2
+ 2.3 ‘title’: node code node, samptitle arg3
+ 2.4 (file name)node:: code node, file name
+ 2.5 ()node:: node and manual
+ 2.6 ()Top:: Top and manual
+ 2.7 ():: no node just manual
+ 2.8 (file name):: no node just file name
+ 2.9 See b: (c)a inforef a b c
2.10 (see (file name)Top::) pxref Top file name, spaces
2.11 (see (file name)::) pxref file name only, spaces
2.12 See (filename)Top::, xref Top filename only, no spaces
2.13 See (filename)::. xref filename only, no spaces
-for example see node:: (see node::) (see (file)Top::)
-*****************************************************
+for example node:: (see node::) (see (file)Top::)
+*************************************************
1 See title: (file name)node.
*****************************
-2 see node:: just node
-**********************
+2 node:: just node
+******************
-2.1 for example see node:: (see node::) (see (file)Top::)
-=========================================================
+2.1 for example node:: (see node::) (see (file)Top::)
+=====================================================
-2.2 see cross ref name: node node, crossref arg2
-================================================
+2.2 cross ref name: node node, crossref arg2
+============================================
-2.3 see ‘title’: node code node, samptitle arg3
-===============================================
+2.3 ‘title’: node code node, samptitle arg3
+===========================================
-2.4 see (file name)node:: code node, file name
-==============================================
+2.4 (file name)node:: code node, file name
+==========================================
-2.5 see ()node:: node and manual
-================================
+2.5 ()node:: node and manual
+============================
-2.6 see ()Top:: Top and manual
-==============================
+2.6 ()Top:: Top and manual
+==========================
-2.7 see ():: no node just manual
-================================
+2.7 ():: no node just manual
+============================
-2.8 see (file name):: no node just file name
-============================================
+2.8 (file name):: no node just file name
+========================================
-2.9 see b: (c)a inforef a b c
+2.9 See b: (c)a inforef a b c
=============================
2.10 (see (file name)Top::) pxref Top file name, spaces
diff --git a/tp/t/results/converters_tests/refs_formatting.pl
b/tp/t/results/converters_tests/refs_formatting.pl
index f9e63f806f..ebe9295c6c 100644
--- a/tp/t/results/converters_tests/refs_formatting.pl
+++ b/tp/t/results/converters_tests/refs_formatting.pl
@@ -3030,43 +3030,41 @@ $result_floats{'refs_formatting'} = {};
$result_converted{'plaintext'}->{'refs_formatting'} = '1 chapter
*********
-‘@ref{chapter,cross ref name}’ see cross ref name: chapter
-‘@ref{chapter,,title}’ see title: chapter ‘@ref{chapter,,,file name}’
-see (file name)chapter:: ‘@ref{chapter,,,,manual}’ see ()chapter::
-‘@ref{chapter,cross ref name,title,}’ see cross ref name: chapter
-‘@ref{chapter,cross ref name,,file name}’ see cross ref name: (file
-name)chapter ‘@ref{chapter,cross ref name,,,manual}’ see cross ref name:
-()chapter ‘@ref{chapter,cross ref name,title,file name}’ see cross ref
-name: (file name)chapter ‘@ref{chapter,cross ref name,title,,manual}’
-see cross ref name: ()chapter ‘@ref{chapter,cross ref name,title, file
-name, manual}’ see cross ref name: (file name)chapter
-‘@ref{chapter,,title,file name}’ see title: (file name)chapter
-‘@ref{chapter,,title,,manual}’ see title: ()chapter
-‘@ref{chapter,,title, file name, manual}’ see title: (file name)chapter
-‘@ref{chapter,,,file name,manual}’ see (file name)chapter::
+‘@ref{chapter,cross ref name}’ cross ref name: chapter
+‘@ref{chapter,,title}’ title: chapter ‘@ref{chapter,,,file name}’ (file
+name)chapter:: ‘@ref{chapter,,,,manual}’ ()chapter:: ‘@ref{chapter,cross
+ref name,title,}’ cross ref name: chapter ‘@ref{chapter,cross ref
+name,,file name}’ cross ref name: (file name)chapter ‘@ref{chapter,cross
+ref name,,,manual}’ cross ref name: ()chapter ‘@ref{chapter,cross ref
+name,title,file name}’ cross ref name: (file name)chapter
+‘@ref{chapter,cross ref name,title,,manual}’ cross ref name: ()chapter
+‘@ref{chapter,cross ref name,title, file name, manual}’ cross ref name:
+(file name)chapter ‘@ref{chapter,,title,file name}’ title: (file
+name)chapter ‘@ref{chapter,,title,,manual}’ title: ()chapter
+‘@ref{chapter,,title, file name, manual}’ title: (file name)chapter
+‘@ref{chapter,,,file name,manual}’ (file name)chapter::
- ‘@ref{(pman)anode,cross ref name}’ see cross ref name: (pman)anode
-‘@ref{(pman)anode,,title}’ see title: (pman)anode
-‘@ref{(pman)anode,,,file name}’ see (file name)(pman)anode::
-‘@ref{(pman)anode,,,,manual}’ see ()(pman)anode::
-‘@ref{(pman)anode,cross ref name,title,}’ see cross ref name:
-(pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ see cross ref
-name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref name,,,manual}’
-see cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross ref
-name,title,file name}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,cross ref name,title,,manual}’ see cross ref name:
+ ‘@ref{(pman)anode,cross ref name}’ cross ref name: (pman)anode
+‘@ref{(pman)anode,,title}’ title: (pman)anode ‘@ref{(pman)anode,,,file
+name}’ (file name)(pman)anode:: ‘@ref{(pman)anode,,,,manual}’
+()(pman)anode:: ‘@ref{(pman)anode,cross ref name,title,}’ cross ref
+name: (pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ cross
+ref name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref
+name,,,manual}’ cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross
+ref name,title,file name}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,cross ref name,title,,manual}’ cross ref name:
()(pman)anode ‘@ref{(pman)anode,cross ref name,title, file name,
-manual}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,,title,file name}’ see title: (file name)(pman)anode
-‘@ref{(pman)anode,,title,,manual}’ see title: ()(pman)anode
-‘@ref{(pman)anode,,title, file name, manual}’ see title: (file
-name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ see (file
+manual}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,,title,file name}’ title: (file name)(pman)anode
+‘@ref{(pman)anode,,title,,manual}’ title: ()(pman)anode
+‘@ref{(pman)anode,,title, file name, manual}’ title: (file
+name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ (file
name)(pman)anode::
- ‘@inforef{chapter, cross ref name, file name}’ see cross ref name:
-(file name)chapter ‘@inforef{chapter}’ see chapter:: ‘@inforef{chapter,
-cross ref name}’ see cross ref name: chapter ‘@inforef{chapter,,file
-name}’ see (file name)chapter::
+ ‘@inforef{chapter, cross ref name, file name}’ See cross ref name:
+(file name)chapter ‘@inforef{chapter}’ See chapter:: ‘@inforef{chapter,
+cross ref name}’ See cross ref name: chapter ‘@inforef{chapter,,file
+name}’ See (file name)chapter::
';
diff --git a/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
b/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
index 9cd7e3ec83..264503c494 100644
--- a/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
+++ b/tp/t/results/converters_tests/some_at_commands_in_ref_nodes.pl
@@ -1492,8 +1492,8 @@
$result_converted{'plaintext'}->{'some_at_commands_in_ref_nodes'} = 'Top
1 A SC node ï ï Ḕ ł Ḉ ¡
***********************
-see see (manual)a *strong* ref with SC, a i trema ï, a dotless i trema ï
-Ḕ and exclamdown ¡::.
+see (manual)a *strong* ref with SC, a i trema ï, a dotless i trema ï Ḕ
+and exclamdown ¡::.
See A SC Ñ Å TeX node ï ï Ḕ ł Ḉ ¡::.
';
diff --git a/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
b/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
index 1dd287f12d..2efeb8ed43 100644
--- a/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
+++ b/tp/t/results/converters_tests/spaces_in_empty_node_names.pl
@@ -693,11 +693,11 @@ $result_floats{'spaces_in_empty_node_names'} = {};
-$result_converted{'plaintext'}->{'spaces_in_empty_node_names'} = 'see ::
+$result_converted{'plaintext'}->{'spaces_in_empty_node_names'} = ' ::
- see ::
+ ::
- see ::
+ ::
';
diff --git a/tp/t/results/converters_tests/spaces_in_node_names.pl
b/tp/t/results/converters_tests/spaces_in_node_names.pl
index 9878d1939b..734cd248b2 100644
--- a/tp/t/results/converters_tests/spaces_in_node_names.pl
+++ b/tp/t/results/converters_tests/spaces_in_node_names.pl
@@ -767,11 +767,11 @@ $result_floats{'spaces_in_node_names'} = {};
-$result_converted{'plaintext'}->{'spaces_in_node_names'} = 'see chap ::
+$result_converted{'plaintext'}->{'spaces_in_node_names'} = 'chap ::
- see b ::
+ b ::
- see c ::
+ c ::
';
diff --git a/tp/t/results/converters_tests/things_before_setfilename.pl
b/tp/t/results/converters_tests/things_before_setfilename.pl
index b80946966e..70a637870a 100644
--- a/tp/t/results/converters_tests/things_before_setfilename.pl
+++ b/tp/t/results/converters_tests/things_before_setfilename.pl
@@ -1294,9 +1294,9 @@
$result_converted{'plaintext'}->{'things_before_setfilename'} = 'top section
1 Chapter
*********
-Ref to anchor see An anchor::
+Ref to anchor An anchor::
- Ref to footnote anchor see Anchor in footnote::
+ Ref to footnote anchor Anchor in footnote::
';
diff --git
a/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
b/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
index 8f81dbebd8..c43ac27afd 100644
--- a/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
+++ b/tp/t/results/converters_tests/things_before_setfilename_no_element.pl
@@ -1042,9 +1042,9 @@
$result_indices_sort_strings{'things_before_setfilename_no_element'} = {
-$result_converted{'plaintext'}->{'things_before_setfilename_no_element'} =
'Ref to anchor see An anchor::
+$result_converted{'plaintext'}->{'things_before_setfilename_no_element'} =
'Ref to anchor An anchor::
- Ref to footnote anchor see Anchor in footnote::
+ Ref to footnote anchor Anchor in footnote::
';
diff --git a/tp/t/results/converters_tests/top_in_ref.pl
b/tp/t/results/converters_tests/top_in_ref.pl
index bb78fb9f03..d5811ba5da 100644
--- a/tp/t/results/converters_tests/top_in_ref.pl
+++ b/tp/t/results/converters_tests/top_in_ref.pl
@@ -3025,38 +3025,37 @@ $result_floats{'top_in_ref'} = {};
-$result_converted{'plaintext'}->{'top_in_ref'} = '‘@ref{Top,cross ref name}’
see cross ref name: Top ‘@ref{Top,,title}’
-see title: Top ‘@ref{Top,,,file name}’ see (file name)Top::
-‘@ref{Top,,,,manual}’ see ()Top:: ‘@ref{Top,cross ref name,title,}’ see
-cross ref name: Top ‘@ref{Top,cross ref name,,file name}’ see cross ref
-name: (file name)Top ‘@ref{Top,cross ref name,,,manual}’ see cross ref
-name: ()Top ‘@ref{Top,cross ref name,title,file name}’ see cross ref
-name: (file name)Top ‘@ref{Top,cross ref name,title,,manual}’ see cross
-ref name: ()Top ‘@ref{Top,cross ref name,title, file name, manual}’ see
-cross ref name: (file name)Top ‘@ref{Top,,title,file name}’ see title:
-(file name)Top ‘@ref{Top,,title,,manual}’ see title: ()Top
-‘@ref{Top,,title, file name, manual}’ see title: (file name)Top
-‘@ref{Top,,,file name,manual}’ see (file name)Top::
+$result_converted{'plaintext'}->{'top_in_ref'} = '‘@ref{Top,cross ref name}’
cross ref name: Top ‘@ref{Top,,title}’ title:
+Top ‘@ref{Top,,,file name}’ (file name)Top:: ‘@ref{Top,,,,manual}’
+()Top:: ‘@ref{Top,cross ref name,title,}’ cross ref name: Top
+‘@ref{Top,cross ref name,,file name}’ cross ref name: (file name)Top
+‘@ref{Top,cross ref name,,,manual}’ cross ref name: ()Top
+‘@ref{Top,cross ref name,title,file name}’ cross ref name: (file
+name)Top ‘@ref{Top,cross ref name,title,,manual}’ cross ref name: ()Top
+‘@ref{Top,cross ref name,title, file name, manual}’ cross ref name:
+(file name)Top ‘@ref{Top,,title,file name}’ title: (file name)Top
+‘@ref{Top,,title,,manual}’ title: ()Top ‘@ref{Top,,title, file name,
+manual}’ title: (file name)Top ‘@ref{Top,,,file name,manual}’ (file
+name)Top::
- ‘@ref{(pman)Top,cross ref name}’ see cross ref name: (pman)Top
-‘@ref{(pman)Top,,title}’ see title: (pman)Top ‘@ref{(pman)Top,,,file
-name}’ see (file name)(pman)Top:: ‘@ref{(pman)Top,,,,manual}’ see
-()(pman)Top:: ‘@ref{(pman)Top,cross ref name,title,}’ see cross ref
-name: (pman)Top ‘@ref{(pman)Top,cross ref name,,file name}’ see cross
-ref name: (file name)(pman)Top ‘@ref{(pman)Top,cross ref name,,,manual}’
-see cross ref name: ()(pman)Top ‘@ref{(pman)Top,cross ref
-name,title,file name}’ see cross ref name: (file name)(pman)Top
-‘@ref{(pman)Top,cross ref name,title,,manual}’ see cross ref name:
-()(pman)Top ‘@ref{(pman)Top,cross ref name,title, file name, manual}’
-see cross ref name: (file name)(pman)Top ‘@ref{(pman)Top,,title,file
-name}’ see title: (file name)(pman)Top ‘@ref{(pman)Top,,title,,manual}’
-see title: ()(pman)Top ‘@ref{(pman)Top,,title, file name, manual}’ see
-title: (file name)(pman)Top ‘@ref{(pman)Top,,,file name,manual}’ see
-(file name)(pman)Top::
+ ‘@ref{(pman)Top,cross ref name}’ cross ref name: (pman)Top
+‘@ref{(pman)Top,,title}’ title: (pman)Top ‘@ref{(pman)Top,,,file name}’
+(file name)(pman)Top:: ‘@ref{(pman)Top,,,,manual}’ ()(pman)Top::
+‘@ref{(pman)Top,cross ref name,title,}’ cross ref name: (pman)Top
+‘@ref{(pman)Top,cross ref name,,file name}’ cross ref name: (file
+name)(pman)Top ‘@ref{(pman)Top,cross ref name,,,manual}’ cross ref name:
+()(pman)Top ‘@ref{(pman)Top,cross ref name,title,file name}’ cross ref
+name: (file name)(pman)Top ‘@ref{(pman)Top,cross ref
+name,title,,manual}’ cross ref name: ()(pman)Top ‘@ref{(pman)Top,cross
+ref name,title, file name, manual}’ cross ref name: (file name)(pman)Top
+‘@ref{(pman)Top,,title,file name}’ title: (file name)(pman)Top
+‘@ref{(pman)Top,,title,,manual}’ title: ()(pman)Top
+‘@ref{(pman)Top,,title, file name, manual}’ title: (file name)(pman)Top
+‘@ref{(pman)Top,,,file name,manual}’ (file name)(pman)Top::
- ‘@inforef{Top, cross ref name, file name}’ see cross ref name: (file
-name)Top ‘@inforef{Top}’ see Top:: ‘@inforef{Top, cross ref name}’ see
-cross ref name: Top ‘@inforef{Top,,file name}’ see (file name)Top::
+ ‘@inforef{Top, cross ref name, file name}’ See cross ref name: (file
+name)Top ‘@inforef{Top}’ See Top:: ‘@inforef{Top, cross ref name}’ See
+cross ref name: Top ‘@inforef{Top,,file name}’ See (file name)Top::
';
diff --git a/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
b/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
index 54f853b1f8..4d003c350c 100644
--- a/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
+++ b/tp/t/results/coverage_braces/contain_plain_text_nestings.pl
@@ -886,7 +886,7 @@
$result_converted{'plaintext'}->{'contain_plain_text_nestings'} = 'top
Text ‘code in w’ text. <‘code in key’ text>
- Text see cross in w: Top text. <see cross in key: Top text>
+ Text cross in w: Top text. <cross in key: Top text>
* Menu:
diff --git a/tp/t/results/coverage_braces/inforef_too_much_args.pl
b/tp/t/results/coverage_braces/inforef_too_much_args.pl
index f66f49c77a..da971c27e2 100644
--- a/tp/t/results/coverage_braces/inforef_too_much_args.pl
+++ b/tp/t/results/coverage_braces/inforef_too_much_args.pl
@@ -153,7 +153,7 @@ $result_floats{'inforef_too_much_args'} = {};
-$result_converted{'plaintext'}->{'inforef_too_much_args'} = 'see cross ref
name: (file name, spurious arg)chapter
+$result_converted{'plaintext'}->{'inforef_too_much_args'} = 'See cross ref
name: (file name, spurious arg)chapter
';
diff --git a/tp/t/results/coverage_braces/ref_in_style_command.pl
b/tp/t/results/coverage_braces/ref_in_style_command.pl
index 0c8d0e2d05..ff3e00175f 100644
--- a/tp/t/results/coverage_braces/ref_in_style_command.pl
+++ b/tp/t/results/coverage_braces/ref_in_style_command.pl
@@ -88,7 +88,7 @@ $result_floats{'ref_in_style_command'} = {};
-$result_converted{'plaintext'}->{'ref_in_style_command'} = '‘see (manula)other
node::’.
+$result_converted{'plaintext'}->{'ref_in_style_command'} = '‘(manula)other
node::’.
';
diff --git a/tp/t/results/coverage_braces/uref_in_ref.pl
b/tp/t/results/coverage_braces/uref_in_ref.pl
index 59a0e4482c..70904f6d7c 100644
--- a/tp/t/results/coverage_braces/uref_in_ref.pl
+++ b/tp/t/results/coverage_braces/uref_in_ref.pl
@@ -226,7 +226,7 @@ $result_floats{'uref_in_ref'} = {};
-$result_converted{'plaintext'}->{'uref_in_ref'} = 'see cross ref with uref
uref1 (href://http/myhost.com/index.html): (info
+$result_converted{'plaintext'}->{'uref_in_ref'} = 'cross ref with uref uref1
(href://http/myhost.com/index.html): (info
file with uref3 uref3 (href://http/myhost.com/index3.html))(file)node
';
diff --git a/tp/t/results/def/ref_in_def.pl b/tp/t/results/def/ref_in_def.pl
index 23e6d2522f..f002744c91 100644
--- a/tp/t/results/def/ref_in_def.pl
+++ b/tp/t/results/def/ref_in_def.pl
@@ -711,10 +711,8 @@ $result_indices_sort_strings{'ref_in_def'} = {
-$result_converted{'plaintext'}->{'ref_in_def'} = ' - see myanchor::: see
myanchor:: see myanchor:: see myanchor:: see
- myanchor::
- - see myanchor::: see myanchor:: see myanchor:: see myanchor:: see
- myanchor::
+$result_converted{'plaintext'}->{'ref_in_def'} = ' - myanchor::: myanchor::
see myanchor:: see myanchor:: see myanchor::
+ - myanchor::: myanchor:: see myanchor:: see myanchor:: see myanchor::
T
';
diff --git a/tp/t/results/float/float_copying.pl
b/tp/t/results/float/float_copying.pl
index 5703a7a6cf..21d8acc27a 100644
--- a/tp/t/results/float/float_copying.pl
+++ b/tp/t/results/float/float_copying.pl
@@ -1102,7 +1102,7 @@ Copyright notice 1: The Public Domain notice(1)
(1) The caption copying footnote
- see see Copying and floats::.
+ see Copying and floats::.
Appendix A Copying and floats
*****************************
@@ -1135,11 +1135,11 @@ Copyright notice 1: The Public Domain notice(2)
(1) The caption copying footnote
- see see Copying and floats::.
+ see Copying and floats::.
(2) The caption copying footnote
- see see Copying and floats::.
+ see Copying and floats::.
';
diff --git a/tp/t/results/float/numbering_captions_listoffloats.pl
b/tp/t/results/float/numbering_captions_listoffloats.pl
index 3dd0a73718..453d815019 100644
--- a/tp/t/results/float/numbering_captions_listoffloats.pl
+++ b/tp/t/results/float/numbering_captions_listoffloats.pl
@@ -6183,19 +6183,19 @@ Text A.1: C appendix sec float
list of floats
**************
-See see Text 1.3: text in section. And (see Text 1.1: text in chapter).
+See Text 1.3: text in section. And (see Text 1.1: text in chapter).
See Text 1: text with a lot of features.
- And now a ref (without manual or printed manual) see cross ref: text
-with a lot of features.
+ And now a ref (without manual or printed manual) cross ref: text with
+a lot of features.
- And now a ref (with manual without printed manual) see cross ref:
+ And now a ref (with manual without printed manual) cross ref:
(manual)text with a lot of features.
- And now a ref (without manual with a printed manual) see cross ref:
+ And now a ref (without manual with a printed manual) cross ref:
()text with a lot of features.
- A ref to float without type see 1: label but no type.
+ A ref to float without type 1: label but no type.
* Menu:
diff --git a/tp/t/results/float/ref_to_float.pl
b/tp/t/results/float/ref_to_float.pl
index 6c7dd4ded6..f87b4cd49f 100644
--- a/tp/t/results/float/ref_to_float.pl
+++ b/tp/t/results/float/ref_to_float.pl
@@ -325,9 +325,9 @@ Text 1
In foat 2.
1
-see Text 1: Label1
+Text 1: Label1
- see 1: Label2
+ 1: Label2
';
diff --git a/tp/t/results/formats_encodings/at_commands_in_refs.pl
b/tp/t/results/formats_encodings/at_commands_in_refs.pl
index cb810e503b..0328208d79 100644
--- a/tp/t/results/formats_encodings/at_commands_in_refs.pl
+++ b/tp/t/results/formats_encodings/at_commands_in_refs.pl
@@ -15680,60 +15680,60 @@
$result_converted{'plaintext'}->{'at_commands_in_refs'} = 'Top
27 <http://somewhere_aaa> text (url) ls
***************************************
-see { }::
+{ }::
- see !
+ !
. . ? @::
- see @ { } \\ #::
+ @ { } \\ #::
- see LaTeX TeX • , © ... ...::
+ LaTeX TeX • , © ... ...::
- see ≡ error→ € ¡ ↦ −::
+ ≡ error→ € ¡ ↦ −::
- see ≥ ≤ →::
+ ≥ ≤ →::
- see ª º ⋆ £ ⊣ ¿ ®::
+ ª º ⋆ £ ⊣ ¿ ®::
- see ⇒ ° a b a sunny day å::
+ ⇒ ° a b a sunny day å::
- see Å æ œ Æ Œ ø Ø ß ł Ł Ð ð Þ þ::
+ Å æ œ Æ Œ ø Ø ß ł Ł Ð ð Þ þ::
- see ä ẽ î â à é ç ē e̊ e̋ ę::
+ ä ẽ î â à é ç ē e̊ e̋ ę::
- see ė ĕ e̲ ẹ ě ȷ e͡e::
+ ė ĕ e̲ ẹ ě ȷ e͡e::
- see ı Ḕ Ḉ::
+ ı Ḕ Ḉ::
- see “ ” ‘ ’ „ ‚::
+ “ ” ‘ ’ „ ‚::
- see « » « » ‹ ›::
+ « » « » ‹ ›::
- see `` \'\' --- -- ` \'::
+ `` \'\' --- -- ` \'::
- see AAA (fff) AAA BBB::
+ AAA (fff) AAA BBB::
- see CCC (rrr) CCC DDD::
+ CCC (rrr) CCC DDD::
- see the someone <someone@somewher> <no_explain@there>::
+ the someone <someone@somewher> <no_explain@there>::
- see [f--ile1] Image description""\\.::
+ [f--ile1] Image description""\\.::
- see @ {} . ::
+ @ {} . ::
- see cite asis in @w b in r SC *str* t VAR dfn i::
+ cite asis in @w b in r SC *str* t VAR dfn i::
- see env code option samp command file C-x <ESC>::
+ env code option samp command file C-x <ESC>::
- see 8.27in::
+ 8.27in::
- see sansserif slanted::
+ sansserif slanted::
- see indicateurl::
+ indicateurl::
- see _{g}H 3^{rd}::
+ _{g}H 3^{rd}::
- see <http://somewhere_aaa> text (url) ls::
+ <http://somewhere_aaa> text (url) ls::
';
diff --git
a/tp/t/results/indices/index_special_region/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region/res_plaintext/Copying-and-indices.txt
index b6d61f9766..07d43142e8 100644
---
a/tp/t/results/indices/index_special_region/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
This is a test manual, trivially and explicitly in the public
domain(1).
diff --git
a/tp/t/results/indices/index_special_region_no_insertcopying/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_no_insertcopying/res_plaintext/Copying-and-indices.txt
index af5714d000..16ff846a69 100644
---
a/tp/t/results/indices/index_special_region_no_insertcopying/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_no_insertcopying/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
* Menu:
diff --git
a/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
index af5714d000..16ff846a69 100644
---
a/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_no_insertcopying_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
* Menu:
diff --git
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
index af5714d000..16ff846a69 100644
---
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
* Menu:
diff --git
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
index af5714d000..16ff846a69 100644
---
a/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_no_insertcopying_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
* Menu:
diff --git
a/tp/t/results/indices/index_special_region_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
index 6d4b6739de..86b44128b5 100644
---
a/tp/t/results/indices/index_special_region_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_no_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
This is a test manual, trivially and explicitly in the public
domain(1) (see Copying and indices-Footnote-1::).
diff --git
a/tp/t/results/indices/index_special_region_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
index 6d4b6739de..86b44128b5 100644
---
a/tp/t/results/indices/index_special_region_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_titlepage_no_nodes/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
This is a test manual, trivially and explicitly in the public
domain(1) (see Copying and indices-Footnote-1::).
diff --git
a/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
b/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
index b6d61f9766..07d43142e8 100644
---
a/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
+++
b/tp/t/results/indices/index_special_region_titlepage_no_nodes_footnotes_default/res_plaintext/Copying-and-indices.txt
@@ -3,11 +3,11 @@ Appendix A Copying and indices
In the appendix, we print the indices and references.
- see Copying information:: for the copying information. see Public
-domain reference:: for reference on the licence.
+ Copying information:: for the copying information. Public domain
+reference:: for reference on the licence.
- see Titlepage anchor:: for the titlepage. see Titlepage footnote
-anchor:: for reference on the titlepage.
+ Titlepage anchor:: for the titlepage. Titlepage footnote anchor::
+for reference on the titlepage.
This is a test manual, trivially and explicitly in the public
domain(1).
diff --git a/tp/t/results/menu/commands_in_nodedescriptionblock.pl
b/tp/t/results/menu/commands_in_nodedescriptionblock.pl
index 8fd5d68a7a..ee10c06630 100644
--- a/tp/t/results/menu/commands_in_nodedescriptionblock.pl
+++ b/tp/t/results/menu/commands_in_nodedescriptionblock.pl
@@ -1318,7 +1318,7 @@
$result_converted{'plaintext'}->{'commands_in_nodedescriptionblock'} = 'test com
* Menu:
* node1::
- see node2::. Footnote(1). Some text to see where the max
column could be.
+ node2::. Footnote(1). Some text to see where the max column
could be.
in w.
[float_image]
@@ -1328,7 +1328,7 @@
$result_converted{'plaintext'}->{'commands_in_nodedescriptionblock'} = 'test com
* node2::
-see in nodescription::, see tfloat 1.1: f1.
+in nodescription::, tfloat 1.1: f1.
---------- Footnotes ----------
@@ -1340,12 +1340,12 @@ see in nodescription::, see tfloat 1.1: f1.
2 chap2
*******
-see in nodescription::, see tfloat 1.1: f1.
+in nodescription::, tfloat 1.1: f1.
* Menu:
* node1::
- see node2::. Footnote(1). Some text to see where the max
column could be.
+ node2::. Footnote(1). Some text to see where the max column
could be.
in w.
[float_image]
diff --git a/tp/t/results/misc_commands/ref_in_center.pl
b/tp/t/results/misc_commands/ref_in_center.pl
index 39dcf68f7e..fef79353fa 100644
--- a/tp/t/results/misc_commands/ref_in_center.pl
+++ b/tp/t/results/misc_commands/ref_in_center.pl
@@ -416,9 +416,9 @@ $result_converted{'plaintext'}->{'ref_in_center'} = 'top
1 Chapter
*********
- see Top::
+ Top::
- see title
+ title
: Top
very long
';
diff --git a/tp/t/results/multitable/ref_in_multitable.pl
b/tp/t/results/multitable/ref_in_multitable.pl
index db70e9c82c..a97866425e 100644
--- a/tp/t/results/multitable/ref_in_multitable.pl
+++ b/tp/t/results/multitable/ref_in_multitable.pl
@@ -535,24 +535,24 @@ $result_floats{'ref_in_multitable'} = {};
-$result_converted{'plaintext'}->{'ref_in_multitable'} = 'see XXX XXX XXX XXX
XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX XXX
-XXX XXX XXX XXX XXX XXX XXX XXX XX::.
+$result_converted{'plaintext'}->{'ref_in_multitable'} = 'XXX XXX XXX XXX XXX
XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX XXX XXX
+XXX XXX XXX XXX XXX XXX XXX XX::.
-XXX XXX XXX XXX XXX XXX See see RRR RRR RRR RRR RRR RRR RRR RRR RRR
+XXX XXX XXX XXX XXX XXX See RRR RRR RRR RRR RRR RRR RRR RRR RRR
XXX XXX XXX XXX XXX XXX RRRR::.
XX
-XXX XXX XXX XXX XXX XXX See see SSS SSS SSS SSS SSS SSS SSS SSS SSS
-XXX XXX XXX XXX XXX XXX SSS SSS SSS SSSSS::.
+XXX XXX XXX XXX XXX XXX See SSS SSS SSS SSS SSS SSS SSS SSS SSS SSS
+XXX XXX XXX XXX XXX XXX SSS SSS SSSSS::.
XX
adsf(1) second column
- see XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX
-XXX XXX XXX XXX XXX XXX XXX XXX XXX XX::.
+ XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX XXX
+XXX XXX XXX XXX XXX XXX XXX XXX XX::.
---------- Footnotes ----------
- (1) see XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX
-XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX::
+ (1) XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX
+XXX XXX XXX XXX XXX XXX XXX XXX XXX XX::
';
diff --git a/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
b/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
index 49042d1fb4..e2c71d5a8e 100644
--- a/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
+++ b/tp/t/results/plaintext_tests/at_commands_glued_in_example.pl
@@ -527,7 +527,7 @@
$result_converted{'plaintext'}->{'at_commands_glued_in_example'} = ' at@.
acronymABC (aaa bb cc)acronym.
acronym2ABCacronym.
emailmali <somebody>email.
- refsee Top::ref.
+ refTop::ref.
Foornote(1)after footnote.
accentîaccent.
and star
diff --git a/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
b/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
index b4d109a51d..c9a5f651db 100644
--- a/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
+++ b/tp/t/results/plaintext_tests/at_commands_glued_in_paragraph.pl
@@ -483,7 +483,7 @@
$result_indices_sort_strings{'at_commands_glued_in_paragraph'} = {
$result_converted{'plaintext'}->{'at_commands_glued_in_paragraph'} = 'at@.
TeXTeXTeX. code‘in code’code. acronymABC (aaa bb cc)acronym.
-acronym2ABCacronym. emailmali <somebody>email. refsee Top::ref.
+acronym2ABCacronym. emailmali <somebody>email. refTop::ref.
Foornote(1)after footnote. accentîaccent. and star
star. noindentafter noindent sp
diff --git
a/tp/t/results/sectioning/double_recursive_self_section_node_reference.pl
b/tp/t/results/sectioning/double_recursive_self_section_node_reference.pl
index ece83789d6..32d5eac1c7 100644
--- a/tp/t/results/sectioning/double_recursive_self_section_node_reference.pl
+++ b/tp/t/results/sectioning/double_recursive_self_section_node_reference.pl
@@ -381,8 +381,8 @@
$result_floats{'double_recursive_self_section_node_reference'} = {};
$result_converted{'plaintext'}->{'double_recursive_self_section_node_reference'}
= 'top
***
-1 see to see node1::::
-**********************
+1 to node1::::
+**************
';
diff --git a/tp/t/results/sectioning/double_recursive_self_section_reference.pl
b/tp/t/results/sectioning/double_recursive_self_section_reference.pl
index 30e5b3a6ae..234b03f5eb 100644
--- a/tp/t/results/sectioning/double_recursive_self_section_reference.pl
+++ b/tp/t/results/sectioning/double_recursive_self_section_reference.pl
@@ -308,11 +308,11 @@ $result_floats{'double_recursive_self_section_reference'}
= {};
-$result_converted{'plaintext'}->{'double_recursive_self_section_reference'} =
'1 see n2::
-**********
+$result_converted{'plaintext'}->{'double_recursive_self_section_reference'} =
'1 n2::
+******
-2 see n1::
-**********
+2 n1::
+******
';
diff --git a/tp/t/results/sectioning/recursive_self_section_reference.pl
b/tp/t/results/sectioning/recursive_self_section_reference.pl
index 3ab61e5666..dfabcd67ac 100644
--- a/tp/t/results/sectioning/recursive_self_section_reference.pl
+++ b/tp/t/results/sectioning/recursive_self_section_reference.pl
@@ -167,8 +167,8 @@ $result_floats{'recursive_self_section_reference'} = {};
-$result_converted{'plaintext'}->{'recursive_self_section_reference'} = '1 see
sharp:: tuple
-*******************
+$result_converted{'plaintext'}->{'recursive_self_section_reference'} = '1
sharp:: tuple
+***************
';
diff --git a/tp/tests/coverage/res_parser/formatting_plaintext/formatting.txt
b/tp/tests/coverage/res_parser/formatting_plaintext/formatting.txt
index fb4d7e20f1..78a0b9dd36 100644
--- a/tp/tests/coverage/res_parser/formatting_plaintext/formatting.txt
+++ b/tp/tests/coverage/res_parser/formatting_plaintext/formatting.txt
@@ -452,70 +452,67 @@ s-mallformat
‘@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}’ See cross r--ef name@: (file n---ame@)c---hapter@.
-‘@ref{chapter, cross ref name, title, file name, manual}’ see cross ref
+‘@ref{chapter, cross ref name, title, file name, manual}’ cross ref
name: (file name)chapter ‘@pxref{chapter, cross ref name, title, file
name, manual}’ see cross ref name: (file name)chapter ‘@inforef{chapter,
-cross ref name, file name}’ see cross ref name: (file name)chapter
+cross ref name, file name}’ See cross ref name: (file name)chapter
- ‘@ref{chapter}’ see chapter:: ‘@xref{chapter}’ See chapter::.
-‘@pxref{chapter}’ see chapter:: ‘@ref{s--ect@comma{}ion}’ see
-s--ect,ion::
+ ‘@ref{chapter}’ chapter:: ‘@xref{chapter}’ See chapter::.
+‘@pxref{chapter}’ see chapter:: ‘@ref{s--ect@comma{}ion}’ s--ect,ion::
‘@ref{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{} in
-title, a comma@comma{} in file, a @comma{} in manual name }’ see a , in
+title, a comma@comma{} in file, a @comma{} in manual name }’ a , in
cross ref: (a comma, in file)s--ect,ion
- ‘@ref{chapter,cross ref name}’ see cross ref name: chapter
-‘@ref{chapter,,title}’ see title: chapter ‘@ref{chapter,,,file name}’
-see (file name)chapter:: ‘@ref{chapter,,,,manual}’ see ()chapter::
-‘@ref{chapter,cross ref name,title,}’ see cross ref name: chapter
-‘@ref{chapter,cross ref name,,file name}’ see cross ref name: (file
-name)chapter ‘@ref{chapter,cross ref name,,,manual}’ see cross ref name:
-()chapter ‘@ref{chapter,cross ref name,title,file name}’ see cross ref
-name: (file name)chapter ‘@ref{chapter,cross ref name,title,,manual}’
-see cross ref name: ()chapter ‘@ref{chapter,cross ref name,title, file
-name, manual}’ see cross ref name: (file name)chapter
-‘@ref{chapter,,title,file name}’ see title: (file name)chapter
-‘@ref{chapter,,title,,manual}’ see title: ()chapter
-‘@ref{chapter,,title, file name, manual}’ see title: (file name)chapter
-‘@ref{chapter,,,file name,manual}’ see (file name)chapter::
-
- ‘@ref{(pman)anode,cross ref name}’ see cross ref name: (pman)anode
-‘@ref{(pman)anode,,title}’ see title: (pman)anode
-‘@ref{(pman)anode,,,file name}’ see (file name)(pman)anode::
-‘@ref{(pman)anode,,,,manual}’ see ()(pman)anode::
-‘@ref{(pman)anode,cross ref name,title,}’ see cross ref name:
-(pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ see cross ref
-name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref name,,,manual}’
-see cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross ref
-name,title,file name}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,cross ref name,title,,manual}’ see cross ref name:
+ ‘@ref{chapter,cross ref name}’ cross ref name: chapter
+‘@ref{chapter,,title}’ title: chapter ‘@ref{chapter,,,file name}’ (file
+name)chapter:: ‘@ref{chapter,,,,manual}’ ()chapter:: ‘@ref{chapter,cross
+ref name,title,}’ cross ref name: chapter ‘@ref{chapter,cross ref
+name,,file name}’ cross ref name: (file name)chapter ‘@ref{chapter,cross
+ref name,,,manual}’ cross ref name: ()chapter ‘@ref{chapter,cross ref
+name,title,file name}’ cross ref name: (file name)chapter
+‘@ref{chapter,cross ref name,title,,manual}’ cross ref name: ()chapter
+‘@ref{chapter,cross ref name,title, file name, manual}’ cross ref name:
+(file name)chapter ‘@ref{chapter,,title,file name}’ title: (file
+name)chapter ‘@ref{chapter,,title,,manual}’ title: ()chapter
+‘@ref{chapter,,title, file name, manual}’ title: (file name)chapter
+‘@ref{chapter,,,file name,manual}’ (file name)chapter::
+
+ ‘@ref{(pman)anode,cross ref name}’ cross ref name: (pman)anode
+‘@ref{(pman)anode,,title}’ title: (pman)anode ‘@ref{(pman)anode,,,file
+name}’ (file name)(pman)anode:: ‘@ref{(pman)anode,,,,manual}’
+()(pman)anode:: ‘@ref{(pman)anode,cross ref name,title,}’ cross ref
+name: (pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ cross
+ref name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref
+name,,,manual}’ cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross
+ref name,title,file name}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,cross ref name,title,,manual}’ cross ref name:
()(pman)anode ‘@ref{(pman)anode,cross ref name,title, file name,
-manual}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,,title,file name}’ see title: (file name)(pman)anode
-‘@ref{(pman)anode,,title,,manual}’ see title: ()(pman)anode
-‘@ref{(pman)anode,,title, file name, manual}’ see title: (file
-name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ see (file
+manual}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,,title,file name}’ title: (file name)(pman)anode
+‘@ref{(pman)anode,,title,,manual}’ title: ()(pman)anode
+‘@ref{(pman)anode,,title, file name, manual}’ title: (file
+name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ (file
name)(pman)anode::
- ‘@inforef{chapter, cross ref name, file name}’ see cross ref name:
-(file name)chapter ‘@inforef{chapter}’ see chapter:: ‘@inforef{chapter,
-cross ref name}’ see cross ref name: chapter ‘@inforef{chapter,,file
-name}’ see (file name)chapter:: ‘@inforef{node, cross ref name, file
-name}’ see cross ref name: (file name)node ‘@inforef{node}’ see node::
-‘@inforef{node, cross ref name}’ see cross ref name: node
-‘@inforef{node,,file name}’ see (file name)node:: ‘@inforef{chapter,
-cross ref name, file name, spurious arg}’ see cross ref name: (file
+ ‘@inforef{chapter, cross ref name, file name}’ See cross ref name:
+(file name)chapter ‘@inforef{chapter}’ See chapter:: ‘@inforef{chapter,
+cross ref name}’ See cross ref name: chapter ‘@inforef{chapter,,file
+name}’ See (file name)chapter:: ‘@inforef{node, cross ref name, file
+name}’ See cross ref name: (file name)node ‘@inforef{node}’ See node::
+‘@inforef{node, cross ref name}’ See cross ref name: node
+‘@inforef{node,,file name}’ See (file name)node:: ‘@inforef{chapter,
+cross ref name, file name, spurious arg}’ See cross ref name: (file
name, spurious arg)chapter
‘@inforef{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{}
-in file}’ see a , in cross ref: (a comma, in file)s--ect,ion
+in file}’ See a , in cross ref: (a comma, in file)s--ect,ion
- ‘see chapter::’.
+ ‘chapter::’.
- see cross ref with uref uref1 (href://http/myhost.com/index.html):
-(info file with uref3 uref3 (href://http/myhost.com/index3.html))ext see
-cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info
+file with uref3 uref3 (href://http/myhost.com/index3.html))ext cross ref
+with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l-ine
@@ -675,36 +672,35 @@ b
g-roupe
- ‘@ref{node}’ see node::
-
- ‘@ref{,cross ref name}’ see cross ref name: ‘@ref{,,title}’ see
-title: ‘@ref{,,,file name}’ see (file name):: ‘@ref{,,,,manual}’ see
-():: ‘@ref{node,cross ref name}’ see cross ref name: node
-‘@ref{node,,title}’ see title: node ‘@ref{node,,,file name}’ see (file
-name)node:: ‘@ref{node,,,,manual}’ see ()node:: ‘@ref{node,cross ref
-name,title,}’ see cross ref name: node ‘@ref{node,cross ref name,,file
-name}’ see cross ref name: (file name)node ‘@ref{node,cross ref
-name,,,manual}’ see cross ref name: ()node ‘@ref{node,cross ref
-name,title,file name}’ see cross ref name: (file name)node
-‘@ref{node,cross ref name,title,,manual}’ see cross ref name: ()node
-‘@ref{node,cross ref name,title, file name, manual}’ see cross ref name:
-(file name)node ‘@ref{node,,title,file name}’ see title: (file name)node
-‘@ref{node,,title,,manual}’ see title: ()node ‘@ref{chapter,,title, file
-name, manual}’ see title: (file name)chapter ‘@ref{node,,title, file
-name, manual}’ see title: (file name)node ‘@ref{node,,,file
-name,manual}’ see (file name)node:: ‘@ref{,cross ref name,title,}’ see
-cross ref name: ‘@ref{,cross ref name,,file name}’ see cross ref name:
-(file name) ‘@ref{,cross ref name,,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title,file name}’ see cross ref name: (file name)
-‘@ref{,cross ref name,title,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title, file name, manual}’ see cross ref name:
-(file name) ‘@ref{,,title,file name}’ see title: (file name)
-‘@ref{,,title,,manual}’ see title: () ‘@ref{,,title, file name, manual}’
-see title: (file name) ‘@ref{,,,file name,manual}’ see (file name)::
-
- ‘@inforef{,cross ref name }’ see cross ref name: ‘@inforef{,,file
-name}’ see (file name):: ‘@inforef{,cross ref name, file name}’ see
-cross ref name: (file name) ‘@inforef{}’ see ::
+ ‘@ref{node}’ node::
+
+ ‘@ref{,cross ref name}’ cross ref name: ‘@ref{,,title}’ title:
+‘@ref{,,,file name}’ (file name):: ‘@ref{,,,,manual}’ ()::
+‘@ref{node,cross ref name}’ cross ref name: node ‘@ref{node,,title}’
+title: node ‘@ref{node,,,file name}’ (file name)node::
+‘@ref{node,,,,manual}’ ()node:: ‘@ref{node,cross ref name,title,}’ cross
+ref name: node ‘@ref{node,cross ref name,,file name}’ cross ref name:
+(file name)node ‘@ref{node,cross ref name,,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title,file name}’ cross ref name: (file
+name)node ‘@ref{node,cross ref name,title,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title, file name, manual}’ cross ref
+name: (file name)node ‘@ref{node,,title,file name}’ title: (file
+name)node ‘@ref{node,,title,,manual}’ title: ()node
+‘@ref{chapter,,title, file name, manual}’ title: (file name)chapter
+‘@ref{node,,title, file name, manual}’ title: (file name)node
+‘@ref{node,,,file name,manual}’ (file name)node:: ‘@ref{,cross ref
+name,title,}’ cross ref name: ‘@ref{,cross ref name,,file name}’ cross
+ref name: (file name) ‘@ref{,cross ref name,,,manual}’ cross ref name:
+() ‘@ref{,cross ref name,title,file name}’ cross ref name: (file name)
+‘@ref{,cross ref name,title,,manual}’ cross ref name: () ‘@ref{,cross
+ref name,title, file name, manual}’ cross ref name: (file name)
+‘@ref{,,title,file name}’ title: (file name) ‘@ref{,,title,,manual}’
+title: () ‘@ref{,,title, file name, manual}’ title: (file name)
+‘@ref{,,,file name,manual}’ (file name)::
+
+ ‘@inforef{,cross ref name }’ See cross ref name: ‘@inforef{,,file
+name}’ See (file name):: ‘@inforef{,cross ref name, file name}’ See
+cross ref name: (file name) ‘@inforef{}’ See ::
Normal text
@@ -1144,70 +1140,67 @@ s-mallformat
‘@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}’ See cross r--ef name@: (file n---ame@)c---hapter@.
-‘@ref{chapter, cross ref name, title, file name, manual}’ see cross ref
+‘@ref{chapter, cross ref name, title, file name, manual}’ cross ref
name: (file name)chapter ‘@pxref{chapter, cross ref name, title, file
name, manual}’ see cross ref name: (file name)chapter ‘@inforef{chapter,
-cross ref name, file name}’ see cross ref name: (file name)chapter
+cross ref name, file name}’ See cross ref name: (file name)chapter
- ‘@ref{chapter}’ see chapter:: ‘@xref{chapter}’ See chapter::.
-‘@pxref{chapter}’ see chapter:: ‘@ref{s--ect@comma{}ion}’ see
-s--ect,ion::
+ ‘@ref{chapter}’ chapter:: ‘@xref{chapter}’ See chapter::.
+‘@pxref{chapter}’ see chapter:: ‘@ref{s--ect@comma{}ion}’ s--ect,ion::
‘@ref{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{} in
-title, a comma@comma{} in file, a @comma{} in manual name }’ see a , in
+title, a comma@comma{} in file, a @comma{} in manual name }’ a , in
cross ref: (a comma, in file)s--ect,ion
- ‘@ref{chapter,cross ref name}’ see cross ref name: chapter
-‘@ref{chapter,,title}’ see title: chapter ‘@ref{chapter,,,file name}’
-see (file name)chapter:: ‘@ref{chapter,,,,manual}’ see ()chapter::
-‘@ref{chapter,cross ref name,title,}’ see cross ref name: chapter
-‘@ref{chapter,cross ref name,,file name}’ see cross ref name: (file
-name)chapter ‘@ref{chapter,cross ref name,,,manual}’ see cross ref name:
-()chapter ‘@ref{chapter,cross ref name,title,file name}’ see cross ref
-name: (file name)chapter ‘@ref{chapter,cross ref name,title,,manual}’
-see cross ref name: ()chapter ‘@ref{chapter,cross ref name,title, file
-name, manual}’ see cross ref name: (file name)chapter
-‘@ref{chapter,,title,file name}’ see title: (file name)chapter
-‘@ref{chapter,,title,,manual}’ see title: ()chapter
-‘@ref{chapter,,title, file name, manual}’ see title: (file name)chapter
-‘@ref{chapter,,,file name,manual}’ see (file name)chapter::
-
- ‘@ref{(pman)anode,cross ref name}’ see cross ref name: (pman)anode
-‘@ref{(pman)anode,,title}’ see title: (pman)anode
-‘@ref{(pman)anode,,,file name}’ see (file name)(pman)anode::
-‘@ref{(pman)anode,,,,manual}’ see ()(pman)anode::
-‘@ref{(pman)anode,cross ref name,title,}’ see cross ref name:
-(pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ see cross ref
-name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref name,,,manual}’
-see cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross ref
-name,title,file name}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,cross ref name,title,,manual}’ see cross ref name:
+ ‘@ref{chapter,cross ref name}’ cross ref name: chapter
+‘@ref{chapter,,title}’ title: chapter ‘@ref{chapter,,,file name}’ (file
+name)chapter:: ‘@ref{chapter,,,,manual}’ ()chapter:: ‘@ref{chapter,cross
+ref name,title,}’ cross ref name: chapter ‘@ref{chapter,cross ref
+name,,file name}’ cross ref name: (file name)chapter ‘@ref{chapter,cross
+ref name,,,manual}’ cross ref name: ()chapter ‘@ref{chapter,cross ref
+name,title,file name}’ cross ref name: (file name)chapter
+‘@ref{chapter,cross ref name,title,,manual}’ cross ref name: ()chapter
+‘@ref{chapter,cross ref name,title, file name, manual}’ cross ref name:
+(file name)chapter ‘@ref{chapter,,title,file name}’ title: (file
+name)chapter ‘@ref{chapter,,title,,manual}’ title: ()chapter
+‘@ref{chapter,,title, file name, manual}’ title: (file name)chapter
+‘@ref{chapter,,,file name,manual}’ (file name)chapter::
+
+ ‘@ref{(pman)anode,cross ref name}’ cross ref name: (pman)anode
+‘@ref{(pman)anode,,title}’ title: (pman)anode ‘@ref{(pman)anode,,,file
+name}’ (file name)(pman)anode:: ‘@ref{(pman)anode,,,,manual}’
+()(pman)anode:: ‘@ref{(pman)anode,cross ref name,title,}’ cross ref
+name: (pman)anode ‘@ref{(pman)anode,cross ref name,,file name}’ cross
+ref name: (file name)(pman)anode ‘@ref{(pman)anode,cross ref
+name,,,manual}’ cross ref name: ()(pman)anode ‘@ref{(pman)anode,cross
+ref name,title,file name}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,cross ref name,title,,manual}’ cross ref name:
()(pman)anode ‘@ref{(pman)anode,cross ref name,title, file name,
-manual}’ see cross ref name: (file name)(pman)anode
-‘@ref{(pman)anode,,title,file name}’ see title: (file name)(pman)anode
-‘@ref{(pman)anode,,title,,manual}’ see title: ()(pman)anode
-‘@ref{(pman)anode,,title, file name, manual}’ see title: (file
-name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ see (file
+manual}’ cross ref name: (file name)(pman)anode
+‘@ref{(pman)anode,,title,file name}’ title: (file name)(pman)anode
+‘@ref{(pman)anode,,title,,manual}’ title: ()(pman)anode
+‘@ref{(pman)anode,,title, file name, manual}’ title: (file
+name)(pman)anode ‘@ref{(pman)anode,,,file name,manual}’ (file
name)(pman)anode::
- ‘@inforef{chapter, cross ref name, file name}’ see cross ref name:
-(file name)chapter ‘@inforef{chapter}’ see chapter:: ‘@inforef{chapter,
-cross ref name}’ see cross ref name: chapter ‘@inforef{chapter,,file
-name}’ see (file name)chapter:: ‘@inforef{node, cross ref name, file
-name}’ see cross ref name: (file name)node ‘@inforef{node}’ see node::
-‘@inforef{node, cross ref name}’ see cross ref name: node
-‘@inforef{node,,file name}’ see (file name)node:: ‘@inforef{chapter,
-cross ref name, file name, spurious arg}’ see cross ref name: (file
+ ‘@inforef{chapter, cross ref name, file name}’ See cross ref name:
+(file name)chapter ‘@inforef{chapter}’ See chapter:: ‘@inforef{chapter,
+cross ref name}’ See cross ref name: chapter ‘@inforef{chapter,,file
+name}’ See (file name)chapter:: ‘@inforef{node, cross ref name, file
+name}’ See cross ref name: (file name)node ‘@inforef{node}’ See node::
+‘@inforef{node, cross ref name}’ See cross ref name: node
+‘@inforef{node,,file name}’ See (file name)node:: ‘@inforef{chapter,
+cross ref name, file name, spurious arg}’ See cross ref name: (file
name, spurious arg)chapter
‘@inforef{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{}
-in file}’ see a , in cross ref: (a comma, in file)s--ect,ion
+in file}’ See a , in cross ref: (a comma, in file)s--ect,ion
- ‘see chapter::’.
+ ‘chapter::’.
- see cross ref with uref uref1 (href://http/myhost.com/index.html):
-(info file with uref3 uref3 (href://http/myhost.com/index3.html))ext see
-cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info
+file with uref3 uref3 (href://http/myhost.com/index3.html))ext cross ref
+with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l-ine
@@ -1367,36 +1360,35 @@ b
g-roupe
- ‘@ref{node}’ see node::
-
- ‘@ref{,cross ref name}’ see cross ref name: ‘@ref{,,title}’ see
-title: ‘@ref{,,,file name}’ see (file name):: ‘@ref{,,,,manual}’ see
-():: ‘@ref{node,cross ref name}’ see cross ref name: node
-‘@ref{node,,title}’ see title: node ‘@ref{node,,,file name}’ see (file
-name)node:: ‘@ref{node,,,,manual}’ see ()node:: ‘@ref{node,cross ref
-name,title,}’ see cross ref name: node ‘@ref{node,cross ref name,,file
-name}’ see cross ref name: (file name)node ‘@ref{node,cross ref
-name,,,manual}’ see cross ref name: ()node ‘@ref{node,cross ref
-name,title,file name}’ see cross ref name: (file name)node
-‘@ref{node,cross ref name,title,,manual}’ see cross ref name: ()node
-‘@ref{node,cross ref name,title, file name, manual}’ see cross ref name:
-(file name)node ‘@ref{node,,title,file name}’ see title: (file name)node
-‘@ref{node,,title,,manual}’ see title: ()node ‘@ref{chapter,,title, file
-name, manual}’ see title: (file name)chapter ‘@ref{node,,title, file
-name, manual}’ see title: (file name)node ‘@ref{node,,,file
-name,manual}’ see (file name)node:: ‘@ref{,cross ref name,title,}’ see
-cross ref name: ‘@ref{,cross ref name,,file name}’ see cross ref name:
-(file name) ‘@ref{,cross ref name,,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title,file name}’ see cross ref name: (file name)
-‘@ref{,cross ref name,title,,manual}’ see cross ref name: ()
-‘@ref{,cross ref name,title, file name, manual}’ see cross ref name:
-(file name) ‘@ref{,,title,file name}’ see title: (file name)
-‘@ref{,,title,,manual}’ see title: () ‘@ref{,,title, file name, manual}’
-see title: (file name) ‘@ref{,,,file name,manual}’ see (file name)::
-
- ‘@inforef{,cross ref name }’ see cross ref name: ‘@inforef{,,file
-name}’ see (file name):: ‘@inforef{,cross ref name, file name}’ see
-cross ref name: (file name) ‘@inforef{}’ see ::
+ ‘@ref{node}’ node::
+
+ ‘@ref{,cross ref name}’ cross ref name: ‘@ref{,,title}’ title:
+‘@ref{,,,file name}’ (file name):: ‘@ref{,,,,manual}’ ()::
+‘@ref{node,cross ref name}’ cross ref name: node ‘@ref{node,,title}’
+title: node ‘@ref{node,,,file name}’ (file name)node::
+‘@ref{node,,,,manual}’ ()node:: ‘@ref{node,cross ref name,title,}’ cross
+ref name: node ‘@ref{node,cross ref name,,file name}’ cross ref name:
+(file name)node ‘@ref{node,cross ref name,,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title,file name}’ cross ref name: (file
+name)node ‘@ref{node,cross ref name,title,,manual}’ cross ref name:
+()node ‘@ref{node,cross ref name,title, file name, manual}’ cross ref
+name: (file name)node ‘@ref{node,,title,file name}’ title: (file
+name)node ‘@ref{node,,title,,manual}’ title: ()node
+‘@ref{chapter,,title, file name, manual}’ title: (file name)chapter
+‘@ref{node,,title, file name, manual}’ title: (file name)node
+‘@ref{node,,,file name,manual}’ (file name)node:: ‘@ref{,cross ref
+name,title,}’ cross ref name: ‘@ref{,cross ref name,,file name}’ cross
+ref name: (file name) ‘@ref{,cross ref name,,,manual}’ cross ref name:
+() ‘@ref{,cross ref name,title,file name}’ cross ref name: (file name)
+‘@ref{,cross ref name,title,,manual}’ cross ref name: () ‘@ref{,cross
+ref name,title, file name, manual}’ cross ref name: (file name)
+‘@ref{,,title,file name}’ title: (file name) ‘@ref{,,title,,manual}’
+title: () ‘@ref{,,title, file name, manual}’ title: (file name)
+‘@ref{,,,file name,manual}’ (file name)::
+
+ ‘@inforef{,cross ref name }’ See cross ref name: ‘@inforef{,,file
+name}’ See (file name):: ‘@inforef{,cross ref name, file name}’ See
+cross ref name: (file name) ‘@inforef{}’ See ::
In example.
@@ -1974,71 +1966,71 @@ cross ref name: (file name) ‘@inforef{}’ see ::
@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@} See cross r---ef name@: (file n---ame@)c---hapter@.
- @ref{chapter, cross ref name, title, file name, manual} see cross ref
name: (file name)chapter
+ @ref{chapter, cross ref name, title, file name, manual} cross ref name:
(file name)chapter
@pxref{chapter, cross ref name, title, file name, manual} see cross ref
name: (file name)chapter
- @inforef{chapter, cross ref name, file name} see cross ref name: (file
name)chapter
+ @inforef{chapter, cross ref name, file name} See cross ref name: (file
name)chapter
- @ref{chapter} see chapter::
+ @ref{chapter} chapter::
@xref{chapter} See chapter::.
@pxref{chapter} see chapter::
- @ref{s--ect@comma{}ion} see s--ect,ion::
+ @ref{s--ect@comma{}ion} s--ect,ion::
@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in
manual name }
- see a , in cross
+ a , in cross
ref: (a comma, in file)s--ect,ion
- @ref{chapter,cross ref name} see cross ref name: chapter
- @ref{chapter,,title} see title: chapter
- @ref{chapter,,,file name} see (file name)chapter::
- @ref{chapter,,,,manual} see ()chapter::
- @ref{chapter,cross ref name,title,} see cross ref name: chapter
- @ref{chapter,cross ref name,,file name} see cross ref name: (file
name)chapter
- @ref{chapter,cross ref name,,,manual} see cross ref name: ()chapter
- @ref{chapter,cross ref name,title,file name} see cross ref name: (file
name)chapter
- @ref{chapter,cross ref name,title,,manual} see cross ref name: ()chapter
- @ref{chapter,cross ref name,title, file name, manual} see cross ref name:
(file name)chapter
- @ref{chapter,,title,file name} see title: (file name)chapter
- @ref{chapter,,title,,manual} see title: ()chapter
- @ref{chapter,,title, file name, manual} see title: (file name)chapter
- @ref{chapter,,,file name,manual} see (file name)chapter::
-
-
- @ref{(pman)anode,cross ref name} see cross ref name: (pman)anode
- @ref{(pman)anode,,title} see title: (pman)anode
- @ref{(pman)anode,,,file name} see (file name)(pman)anode::
- @ref{(pman)anode,,,,manual} see ()(pman)anode::
- @ref{(pman)anode,cross ref name,title,} see cross ref name: (pman)anode
- @ref{(pman)anode,cross ref name,,file name} see cross ref name: (file
name)(pman)anode
- @ref{(pman)anode,cross ref name,,,manual} see cross ref name:
()(pman)anode
- @ref{(pman)anode,cross ref name,title,file name} see cross ref name:
(file name)(pman)anode
- @ref{(pman)anode,cross ref name,title,,manual} see cross ref name:
()(pman)anode
- @ref{(pman)anode,cross ref name,title, file name, manual} see cross ref
name: (file name)(pman)anode
- @ref{(pman)anode,,title,file name} see title: (file name)(pman)anode
- @ref{(pman)anode,,title,,manual} see title: ()(pman)anode
- @ref{(pman)anode,,title, file name, manual} see title: (file
name)(pman)anode
- @ref{(pman)anode,,,file name,manual} see (file name)(pman)anode::
-
-
- @inforef{chapter, cross ref name, file name} see cross ref name: (file
name)chapter
- @inforef{chapter} see chapter::
- @inforef{chapter, cross ref name} see cross ref name: chapter
- @inforef{chapter,,file name} see (file name)chapter::
- @inforef{node, cross ref name, file name} see cross ref name: (file
name)node
- @inforef{node} see node::
- @inforef{node, cross ref name} see cross ref name: node
- @inforef{node,,file name} see (file name)node::
- @inforef{chapter, cross ref name, file name, spurious arg} see cross ref
name: (file name, spurious arg)chapter
+ @ref{chapter,cross ref name} cross ref name: chapter
+ @ref{chapter,,title} title: chapter
+ @ref{chapter,,,file name} (file name)chapter::
+ @ref{chapter,,,,manual} ()chapter::
+ @ref{chapter,cross ref name,title,} cross ref name: chapter
+ @ref{chapter,cross ref name,,file name} cross ref name: (file name)chapter
+ @ref{chapter,cross ref name,,,manual} cross ref name: ()chapter
+ @ref{chapter,cross ref name,title,file name} cross ref name: (file
name)chapter
+ @ref{chapter,cross ref name,title,,manual} cross ref name: ()chapter
+ @ref{chapter,cross ref name,title, file name, manual} cross ref name:
(file name)chapter
+ @ref{chapter,,title,file name} title: (file name)chapter
+ @ref{chapter,,title,,manual} title: ()chapter
+ @ref{chapter,,title, file name, manual} title: (file name)chapter
+ @ref{chapter,,,file name,manual} (file name)chapter::
+
+
+ @ref{(pman)anode,cross ref name} cross ref name: (pman)anode
+ @ref{(pman)anode,,title} title: (pman)anode
+ @ref{(pman)anode,,,file name} (file name)(pman)anode::
+ @ref{(pman)anode,,,,manual} ()(pman)anode::
+ @ref{(pman)anode,cross ref name,title,} cross ref name: (pman)anode
+ @ref{(pman)anode,cross ref name,,file name} cross ref name: (file
name)(pman)anode
+ @ref{(pman)anode,cross ref name,,,manual} cross ref name: ()(pman)anode
+ @ref{(pman)anode,cross ref name,title,file name} cross ref name: (file
name)(pman)anode
+ @ref{(pman)anode,cross ref name,title,,manual} cross ref name:
()(pman)anode
+ @ref{(pman)anode,cross ref name,title, file name, manual} cross ref name:
(file name)(pman)anode
+ @ref{(pman)anode,,title,file name} title: (file name)(pman)anode
+ @ref{(pman)anode,,title,,manual} title: ()(pman)anode
+ @ref{(pman)anode,,title, file name, manual} title: (file name)(pman)anode
+ @ref{(pman)anode,,,file name,manual} (file name)(pman)anode::
+
+
+ @inforef{chapter, cross ref name, file name} See cross ref name: (file
name)chapter
+ @inforef{chapter} See chapter::
+ @inforef{chapter, cross ref name} See cross ref name: chapter
+ @inforef{chapter,,file name} See (file name)chapter::
+ @inforef{node, cross ref name, file name} See cross ref name: (file
name)node
+ @inforef{node} See node::
+ @inforef{node, cross ref name} See cross ref name: node
+ @inforef{node,,file name} See (file name)node::
+ @inforef{chapter, cross ref name, file name, spurious arg} See cross ref
name: (file name, spurious arg)chapter
@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}
- see a , in cross
+ See a , in cross
ref: (a comma, in file)s--ect,ion
- ‘see chapter::’.
+ ‘chapter::’.
- see cross ref with uref uref1 (href://http/myhost.com/index.html): (info
file with uref3 uref3 (href://http/myhost.com/index3.html))ext
- see cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info file
with uref3 uref3 (href://http/myhost.com/index3.html))ext
+ cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l--ine
@@ -2231,42 +2223,42 @@ aaa
g--roupe
- @ref{node} see node::
-
- @ref{,cross ref name} see cross ref name:
- @ref{,,title} see title:
- @ref{,,,file name} see (file name)::
- @ref{,,,,manual} see ()::
- @ref{node,cross ref name} see cross ref name: node
- @ref{node,,title} see title: node
- @ref{node,,,file name} see (file name)node::
- @ref{node,,,,manual} see ()node::
- @ref{node,cross ref name,title,} see cross ref name: node
- @ref{node,cross ref name,,file name} see cross ref name: (file name)node
- @ref{node,cross ref name,,,manual} see cross ref name: ()node
- @ref{node,cross ref name,title,file name} see cross ref name: (file
name)node
- @ref{node,cross ref name,title,,manual} see cross ref name: ()node
- @ref{node,cross ref name,title, file name, manual} see cross ref name:
(file name)node
- @ref{node,,title,file name} see title: (file name)node
- @ref{node,,title,,manual} see title: ()node
- @ref{chapter,,title, file name, manual} see title: (file name)chapter
- @ref{node,,title, file name, manual} see title: (file name)node
- @ref{node,,,file name,manual} see (file name)node::
- @ref{,cross ref name,title,} see cross ref name:
- @ref{,cross ref name,,file name} see cross ref name: (file name)
- @ref{,cross ref name,,,manual} see cross ref name: ()
- @ref{,cross ref name,title,file name} see cross ref name: (file name)
- @ref{,cross ref name,title,,manual} see cross ref name: ()
- @ref{,cross ref name,title, file name, manual} see cross ref name: (file
name)
- @ref{,,title,file name} see title: (file name)
- @ref{,,title,,manual} see title: ()
- @ref{,,title, file name, manual} see title: (file name)
- @ref{,,,file name,manual} see (file name)::
-
- @inforef{,cross ref name } see cross ref name:
- @inforef{,,file name} see (file name)::
- @inforef{,cross ref name, file name} see cross ref name: (file name)
- @inforef{} see ::
+ @ref{node} node::
+
+ @ref{,cross ref name} cross ref name:
+ @ref{,,title} title:
+ @ref{,,,file name} (file name)::
+ @ref{,,,,manual} ()::
+ @ref{node,cross ref name} cross ref name: node
+ @ref{node,,title} title: node
+ @ref{node,,,file name} (file name)node::
+ @ref{node,,,,manual} ()node::
+ @ref{node,cross ref name,title,} cross ref name: node
+ @ref{node,cross ref name,,file name} cross ref name: (file name)node
+ @ref{node,cross ref name,,,manual} cross ref name: ()node
+ @ref{node,cross ref name,title,file name} cross ref name: (file name)node
+ @ref{node,cross ref name,title,,manual} cross ref name: ()node
+ @ref{node,cross ref name,title, file name, manual} cross ref name: (file
name)node
+ @ref{node,,title,file name} title: (file name)node
+ @ref{node,,title,,manual} title: ()node
+ @ref{chapter,,title, file name, manual} title: (file name)chapter
+ @ref{node,,title, file name, manual} title: (file name)node
+ @ref{node,,,file name,manual} (file name)node::
+ @ref{,cross ref name,title,} cross ref name:
+ @ref{,cross ref name,,file name} cross ref name: (file name)
+ @ref{,cross ref name,,,manual} cross ref name: ()
+ @ref{,cross ref name,title,file name} cross ref name: (file name)
+ @ref{,cross ref name,title,,manual} cross ref name: ()
+ @ref{,cross ref name,title, file name, manual} cross ref name: (file name)
+ @ref{,,title,file name} title: (file name)
+ @ref{,,title,,manual} title: ()
+ @ref{,,title, file name, manual} title: (file name)
+ @ref{,,,file name,manual} (file name)::
+
+ @inforef{,cross ref name } See cross ref name:
+ @inforef{,,file name} See (file name)::
+ @inforef{,cross ref name, file name} See cross ref name: (file name)
+ @inforef{} See ::
Text(7)
@@ -2275,306 +2267,306 @@ aaa
* Menu:
-* truc: chapter. (line 2271)
+* truc: chapter. (line 2263)
codeidx
* Menu:
-* a INDEX---ENTRY tẽ --- î: chapter. (line 2271)
+* a INDEX---ENTRY tẽ --- î: chapter. (line 2263)
cp
* Menu:
* -option: chapter. (line 28)
-* -option <1>: chapter. (line 720)
-* -option <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* -option <1>: chapter. (line 716)
+* -option <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ": chapter. (line 28)
-* " <1>: chapter. (line 720)
-* " <2>: chapter. (line 1423)
-* a: chapter. (line 2271)
-* aaa, bbb: chapter. (line 2271)
-* a--a: chapter. (line 2271)
-* a--asis: chapter. (line 522)
-* a--asis <1>: chapter. (line 1214)
-* a--asis <2>: chapter. (line 2045)
+* " <1>: chapter. (line 716)
+* " <2>: chapter. (line 1415)
+* a: chapter. (line 2263)
+* aaa, bbb: chapter. (line 2263)
+* a--a: chapter. (line 2263)
+* a--asis: chapter. (line 519)
+* a--asis <1>: chapter. (line 1207)
+* a--asis <2>: chapter. (line 2037)
aaa, See bbb.
-* b: chapter. (line 523)
-* b <1>: chapter. (line 1215)
-* b <2>: chapter. (line 2046)
-* b--b, c--c: chapter. (line 2271)
+* b: chapter. (line 520)
+* b <1>: chapter. (line 1208)
+* b <2>: chapter. (line 2038)
+* b--b, c--c: chapter. (line 2263)
* counting entry: chapter. (line 0)
-* d--dd, e--ee, f--ff: chapter. (line 2271)
+* d--dd, e--ee, f--ff: chapter. (line 2263)
* d--efcv_name: chapter. (line 366)
* d--efcv_name <1>: chapter. (line 369)
-* d--efcv_name <2>: chapter. (line 1058)
-* d--efcv_name <3>: chapter. (line 1061)
-* d--efcv_name <4>: chapter. (line 1886)
-* d--efcv_name <5>: chapter. (line 1889)
+* d--efcv_name <2>: chapter. (line 1054)
+* d--efcv_name <3>: chapter. (line 1057)
+* d--efcv_name <4>: chapter. (line 1878)
+* d--efcv_name <5>: chapter. (line 1881)
* d--efivar_name of c--lass: chapter. (line 411)
-* d--efivar_name of c--lass <1>: chapter. (line 1103)
-* d--efivar_name of c--lass <2>: chapter. (line 1931)
+* d--efivar_name of c--lass <1>: chapter. (line 1099)
+* d--efivar_name of c--lass <2>: chapter. (line 1923)
* d--efopt_name: chapter. (line 402)
-* d--efopt_name <1>: chapter. (line 1094)
-* d--efopt_name <2>: chapter. (line 1922)
+* d--efopt_name <1>: chapter. (line 1090)
+* d--efopt_name <2>: chapter. (line 1914)
* d--eftypecv_name of c--lass: chapter. (line 372)
* d--eftypecv_name of c--lass <1>: chapter. (line 375)
-* d--eftypecv_name of c--lass <2>: chapter. (line 1064)
-* d--eftypecv_name of c--lass <3>: chapter. (line 1067)
-* d--eftypecv_name of c--lass <4>: chapter. (line 1892)
-* d--eftypecv_name of c--lass <5>: chapter. (line 1895)
+* d--eftypecv_name of c--lass <2>: chapter. (line 1060)
+* d--eftypecv_name of c--lass <3>: chapter. (line 1063)
+* d--eftypecv_name of c--lass <4>: chapter. (line 1884)
+* d--eftypecv_name of c--lass <5>: chapter. (line 1887)
* d--eftypecv_name2 of c--lass2: chapter. (line 443)
* d--eftypecv_name2 of c--lass2 <1>: chapter. (line 446)
-* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1135)
-* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1138)
-* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1964)
-* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1967)
+* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1131)
+* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1134)
+* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1956)
+* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1959)
* d--eftypeivar_name of c--lass: chapter. (line 414)
-* d--eftypeivar_name of c--lass <1>: chapter. (line 1106)
-* d--eftypeivar_name of c--lass <2>: chapter. (line 1934)
+* d--eftypeivar_name of c--lass <1>: chapter. (line 1102)
+* d--eftypeivar_name of c--lass <2>: chapter. (line 1926)
* d--eftypevar_name: chapter. (line 408)
-* d--eftypevar_name <1>: chapter. (line 1100)
-* d--eftypevar_name <2>: chapter. (line 1928)
+* d--eftypevar_name <1>: chapter. (line 1096)
+* d--eftypevar_name <2>: chapter. (line 1920)
* d--eftypevr_name: chapter. (line 363)
-* d--eftypevr_name <1>: chapter. (line 1055)
-* d--eftypevr_name <2>: chapter. (line 1883)
+* d--eftypevr_name <1>: chapter. (line 1051)
+* d--eftypevr_name <2>: chapter. (line 1875)
* d--efvar_name: chapter. (line 396)
* d--efvar_name <1>: chapter. (line 399)
-* d--efvar_name <2>: chapter. (line 1088)
-* d--efvar_name <3>: chapter. (line 1091)
-* d--efvar_name <4>: chapter. (line 1916)
-* d--efvar_name <5>: chapter. (line 1919)
+* d--efvar_name <2>: chapter. (line 1084)
+* d--efvar_name <3>: chapter. (line 1087)
+* d--efvar_name <4>: chapter. (line 1908)
+* d--efvar_name <5>: chapter. (line 1911)
* d--efvr_name: chapter. (line 342)
-* d--efvr_name <1>: chapter. (line 1034)
-* d--efvr_name <2>: chapter. (line 1862)
+* d--efvr_name <1>: chapter. (line 1030)
+* d--efvr_name <2>: chapter. (line 1854)
ddd: See also ccc.
ddd: See also ccc.
-* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2271)
-* index entry between item and itemx: chapter. (line 527)
-* index entry between item and itemx <1>: chapter. (line 657)
-* index entry between item and itemx <2>: chapter. (line 1219)
-* index entry between item and itemx <3>: chapter. (line 1349)
-* index entry between item and itemx <4>: chapter. (line 2050)
-* index entry between item and itemx <5>: chapter. (line 2213)
+* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2263)
+* index entry between item and itemx: chapter. (line 524)
+* index entry between item and itemx <1>: chapter. (line 654)
+* index entry between item and itemx <2>: chapter. (line 1212)
+* index entry between item and itemx <3>: chapter. (line 1342)
+* index entry between item and itemx <4>: chapter. (line 2042)
+* index entry between item and itemx <5>: chapter. (line 2205)
* index entry in footnote: chapter. (line 0)
* index entry within deffn: chapter. (line 317)
-* index entry within deffn <1>: chapter. (line 1009)
-* index entry within deffn <2>: chapter. (line 1835)
+* index entry within deffn <1>: chapter. (line 1005)
+* index entry within deffn <2>: chapter. (line 1827)
* index entry within itemize: chapter. (line 228)
-* index entry within itemize <1>: chapter. (line 920)
-* index entry within itemize <2>: chapter. (line 1746)
+* index entry within itemize <1>: chapter. (line 916)
+* index entry within itemize <2>: chapter. (line 1738)
* index entry within multitable: chapter. (line 250)
-* index entry within multitable <1>: chapter. (line 942)
-* index entry within multitable <2>: chapter. (line 1769)
-* t-ruc: chapter. (line 2271)
-* T-ruc: chapter. (line 2271)
+* index entry within multitable <1>: chapter. (line 938)
+* index entry within multitable <2>: chapter. (line 1761)
+* t-ruc: chapter. (line 2263)
+* T-ruc: chapter. (line 2263)
* vtable i--tem code kbdinputstyle: chapter. (line 152)
-* vtable i--tem code kbdinputstyle <1>: chapter. (line 844)
-* vtable i--tem code kbdinputstyle <2>: chapter. (line 1669)
+* vtable i--tem code kbdinputstyle <1>: chapter. (line 840)
+* vtable i--tem code kbdinputstyle <2>: chapter. (line 1661)
* vtable i--tem default kbdinputstyle: chapter. (line 147)
-* vtable i--tem default kbdinputstyle <1>: chapter. (line 839)
-* vtable i--tem default kbdinputstyle <2>: chapter. (line 1664)
+* vtable i--tem default kbdinputstyle <1>: chapter. (line 835)
+* vtable i--tem default kbdinputstyle <2>: chapter. (line 1656)
* vtable i--tem distinct kbdinputstyle: chapter. (line 162)
-* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 854)
-* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1679)
+* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 850)
+* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1671)
* vtable i--tem example kbdinputstyle: chapter. (line 157)
-* vtable i--tem example kbdinputstyle <1>: chapter. (line 849)
-* vtable i--tem example kbdinputstyle <2>: chapter. (line 1674)
+* vtable i--tem example kbdinputstyle <1>: chapter. (line 845)
+* vtable i--tem example kbdinputstyle <2>: chapter. (line 1666)
* vtable i--tem in example code kbdinputstyle: chapter. (line 154)
-* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 846)
-* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1671)
+* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 842)
+* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1663)
* vtable i--tem in example default kbdinputstyle: chapter. (line 149)
* vtable i--tem in example default kbdinputstyle <1>: chapter.
- (line 841)
+ (line 837)
* vtable i--tem in example default kbdinputstyle <2>: chapter.
- (line 1666)
+ (line 1658)
* vtable i--tem in example distinct kbdinputstyle: chapter. (line 164)
* vtable i--tem in example distinct kbdinputstyle <1>: chapter.
- (line 856)
+ (line 852)
* vtable i--tem in example distinct kbdinputstyle <2>: chapter.
- (line 1681)
+ (line 1673)
* vtable i--tem in example example kbdinputstyle: chapter. (line 159)
* vtable i--tem in example example kbdinputstyle <1>: chapter.
- (line 851)
+ (line 847)
* vtable i--tem in example example kbdinputstyle <2>: chapter.
- (line 1676)
+ (line 1668)
fn
* Menu:
* --foption: chapter. (line 28)
-* --foption <1>: chapter. (line 720)
-* --foption <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* --foption <1>: chapter. (line 716)
+* --foption <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ``: chapter. (line 28)
-* `` <1>: chapter. (line 720)
-* `` <2>: chapter. (line 1423)
+* `` <1>: chapter. (line 716)
+* `` <2>: chapter. (line 1415)
* a: chapter. (line 330)
-* a <1>: chapter. (line 526)
-* a <2>: chapter. (line 656)
-* a <3>: chapter. (line 1022)
-* a <4>: chapter. (line 1218)
-* a <5>: chapter. (line 1348)
-* a <6>: chapter. (line 1848)
-* a <7>: chapter. (line 2049)
-* a <8>: chapter. (line 2212)
-* a <9>: chapter. (line 2271)
-* after: chapter. (line 667)
-* after <1>: chapter. (line 1359)
-* after <2>: chapter. (line 2223)
+* a <1>: chapter. (line 523)
+* a <2>: chapter. (line 653)
+* a <3>: chapter. (line 1018)
+* a <4>: chapter. (line 1211)
+* a <5>: chapter. (line 1341)
+* a <6>: chapter. (line 1840)
+* a <7>: chapter. (line 2041)
+* a <8>: chapter. (line 2204)
+* a <9>: chapter. (line 2263)
+* after: chapter. (line 664)
+* after <1>: chapter. (line 1352)
+* after <2>: chapter. (line 2215)
* arg2: chapter. (line 449)
-* arg2 <1>: chapter. (line 1141)
-* arg2 <2>: chapter. (line 1971)
-* b: chapter. (line 527)
-* b <1>: chapter. (line 657)
-* b <2>: chapter. (line 1219)
-* b <3>: chapter. (line 1349)
-* b <4>: chapter. (line 2050)
-* b <5>: chapter. (line 2213)
+* arg2 <1>: chapter. (line 1137)
+* arg2 <2>: chapter. (line 1963)
+* b: chapter. (line 524)
+* b <1>: chapter. (line 654)
+* b <2>: chapter. (line 1212)
+* b <3>: chapter. (line 1342)
+* b <4>: chapter. (line 2042)
+* b <5>: chapter. (line 2205)
* bidule machin: chapter. (line 325)
-* bidule machin <1>: chapter. (line 1017)
-* bidule machin <2>: chapter. (line 1843)
+* bidule machin <1>: chapter. (line 1013)
+* bidule machin <2>: chapter. (line 1835)
* d--effn_name: chapter. (line 309)
-* d--effn_name <1>: chapter. (line 1001)
-* d--effn_name <2>: chapter. (line 1827)
+* d--effn_name <1>: chapter. (line 997)
+* d--effn_name <2>: chapter. (line 1819)
* d--efmac_name: chapter. (line 390)
-* d--efmac_name <1>: chapter. (line 1082)
-* d--efmac_name <2>: chapter. (line 1910)
+* d--efmac_name <1>: chapter. (line 1078)
+* d--efmac_name <2>: chapter. (line 1902)
* d--efmethod_name on c--lass: chapter. (line 417)
-* d--efmethod_name on c--lass <1>: chapter. (line 1109)
-* d--efmethod_name on c--lass <2>: chapter. (line 1937)
+* d--efmethod_name on c--lass <1>: chapter. (line 1105)
+* d--efmethod_name on c--lass <2>: chapter. (line 1929)
* d--efop_name on c--lass: chapter. (line 378)
* d--efop_name on c--lass <1>: chapter. (line 381)
-* d--efop_name on c--lass <2>: chapter. (line 1070)
-* d--efop_name on c--lass <3>: chapter. (line 1073)
-* d--efop_name on c--lass <4>: chapter. (line 1898)
-* d--efop_name on c--lass <5>: chapter. (line 1901)
+* d--efop_name on c--lass <2>: chapter. (line 1066)
+* d--efop_name on c--lass <3>: chapter. (line 1069)
+* d--efop_name on c--lass <4>: chapter. (line 1890)
+* d--efop_name on c--lass <5>: chapter. (line 1893)
* d--efspec_name: chapter. (line 393)
-* d--efspec_name <1>: chapter. (line 1085)
-* d--efspec_name <2>: chapter. (line 1913)
+* d--efspec_name <1>: chapter. (line 1081)
+* d--efspec_name <2>: chapter. (line 1905)
* d--eftypefn_name: chapter. (line 351)
* d--eftypefn_name <1>: chapter. (line 354)
-* d--eftypefn_name <2>: chapter. (line 1043)
-* d--eftypefn_name <3>: chapter. (line 1046)
-* d--eftypefn_name <4>: chapter. (line 1871)
-* d--eftypefn_name <5>: chapter. (line 1874)
+* d--eftypefn_name <2>: chapter. (line 1039)
+* d--eftypefn_name <3>: chapter. (line 1042)
+* d--eftypefn_name <4>: chapter. (line 1863)
+* d--eftypefn_name <5>: chapter. (line 1866)
* d--eftypefn_name2: chapter. (line 428)
-* d--eftypefn_name2 <1>: chapter. (line 1120)
-* d--eftypefn_name2 <2>: chapter. (line 1949)
+* d--eftypefn_name2 <1>: chapter. (line 1116)
+* d--eftypefn_name2 <2>: chapter. (line 1941)
* d--eftypefun_name: chapter. (line 405)
-* d--eftypefun_name <1>: chapter. (line 1097)
-* d--eftypefun_name <2>: chapter. (line 1925)
+* d--eftypefun_name <1>: chapter. (line 1093)
+* d--eftypefun_name <2>: chapter. (line 1917)
* d--eftypemethod_name on c--lass: chapter. (line 420)
-* d--eftypemethod_name on c--lass <1>: chapter. (line 1112)
-* d--eftypemethod_name on c--lass <2>: chapter. (line 1940)
+* d--eftypemethod_name on c--lass <1>: chapter. (line 1108)
+* d--eftypemethod_name on c--lass <2>: chapter. (line 1932)
* d--eftypeop_name on c--lass: chapter. (line 357)
* d--eftypeop_name on c--lass <1>: chapter. (line 360)
-* d--eftypeop_name on c--lass <2>: chapter. (line 1049)
-* d--eftypeop_name on c--lass <3>: chapter. (line 1052)
-* d--eftypeop_name on c--lass <4>: chapter. (line 1877)
-* d--eftypeop_name on c--lass <5>: chapter. (line 1880)
+* d--eftypeop_name on c--lass <2>: chapter. (line 1045)
+* d--eftypeop_name on c--lass <3>: chapter. (line 1048)
+* d--eftypeop_name on c--lass <4>: chapter. (line 1869)
+* d--eftypeop_name on c--lass <5>: chapter. (line 1872)
* d--eftypeop_name2 on c--lass2: chapter. (line 433)
* d--eftypeop_name2 on c--lass2 <1>: chapter. (line 438)
-* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1125)
-* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1130)
-* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1954)
-* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1959)
+* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1121)
+* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1126)
+* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1946)
+* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1951)
* d--efun_name: chapter. (line 387)
-* d--efun_name <1>: chapter. (line 1079)
-* d--efun_name <2>: chapter. (line 1907)
+* d--efun_name <1>: chapter. (line 1075)
+* d--efun_name <2>: chapter. (line 1899)
* de--ffn_name: chapter. (line 312)
-* de--ffn_name <1>: chapter. (line 1004)
-* de--ffn_name <2>: chapter. (line 1830)
+* de--ffn_name <1>: chapter. (line 1000)
+* de--ffn_name <2>: chapter. (line 1822)
* deffn: chapter. (line 333)
* deffn <1>: chapter. (line 335)
-* deffn <2>: chapter. (line 1025)
-* deffn <3>: chapter. (line 1027)
-* deffn <4>: chapter. (line 1852)
-* deffn <5>: chapter. (line 1854)
+* deffn <2>: chapter. (line 1021)
+* deffn <3>: chapter. (line 1023)
+* deffn <4>: chapter. (line 1844)
+* deffn <5>: chapter. (line 1846)
* deffnx: chapter. (line 331)
* deffnx <1>: chapter. (line 336)
-* deffnx <2>: chapter. (line 1023)
-* deffnx <3>: chapter. (line 1028)
-* deffnx <4>: chapter. (line 1849)
-* deffnx <5>: chapter. (line 1855)
-* f---aa: chapter. (line 2271)
+* deffnx <2>: chapter. (line 1019)
+* deffnx <3>: chapter. (line 1024)
+* deffnx <4>: chapter. (line 1841)
+* deffnx <5>: chapter. (line 1847)
+* f---aa: chapter. (line 2263)
f---aaa, See f---bbb.
-* f---bb, f---cc: chapter. (line 2271)
+* f---bb, f---cc: chapter. (line 2263)
f---ddd: See also f---ccc.
f---ddd: See also f---ccc.
-* f---ddd, f---eee, ffff: chapter. (line 2271)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2271)
+* f---ddd, f---eee, ffff: chapter. (line 2263)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2263)
* followed: chapter. (line 328)
-* followed <1>: chapter. (line 665)
-* followed <2>: chapter. (line 1020)
-* followed <3>: chapter. (line 1357)
-* followed <4>: chapter. (line 1846)
-* followed <5>: chapter. (line 2221)
+* followed <1>: chapter. (line 662)
+* followed <2>: chapter. (line 1016)
+* followed <3>: chapter. (line 1350)
+* followed <4>: chapter. (line 1838)
+* followed <5>: chapter. (line 2213)
* I: chapter. (line 316)
* I <1>: chapter. (line 338)
-* I <2>: chapter. (line 1008)
-* I <3>: chapter. (line 1030)
-* I <4>: chapter. (line 1834)
-* I <5>: chapter. (line 1857)
+* I <2>: chapter. (line 1004)
+* I <3>: chapter. (line 1026)
+* I <4>: chapter. (line 1826)
+* I <5>: chapter. (line 1849)
* id i ule: chapter. (line 322)
-* id i ule <1>: chapter. (line 1014)
-* id i ule <2>: chapter. (line 1840)
+* id i ule <1>: chapter. (line 1010)
+* id i ule <2>: chapter. (line 1832)
* id ule: chapter. (line 321)
-* id ule <1>: chapter. (line 1013)
-* id ule <2>: chapter. (line 1839)
-* INVALID: chapter. (line 669)
-* INVALID <1>: chapter. (line 1361)
-* INVALID <2>: chapter. (line 2225)
+* id ule <1>: chapter. (line 1009)
+* id ule <2>: chapter. (line 1831)
+* INVALID: chapter. (line 666)
+* INVALID <1>: chapter. (line 1354)
+* INVALID <2>: chapter. (line 2217)
* log trap: chapter. (line 318)
-* log trap <1>: chapter. (line 1010)
-* log trap <2>: chapter. (line 1836)
+* log trap <1>: chapter. (line 1006)
+* log trap <2>: chapter. (line 1828)
* log trap1: chapter. (line 319)
-* log trap1 <1>: chapter. (line 1011)
-* log trap1 <2>: chapter. (line 1837)
+* log trap1 <1>: chapter. (line 1007)
+* log trap1 <2>: chapter. (line 1829)
* log trap2: chapter. (line 320)
-* log trap2 <1>: chapter. (line 1012)
-* log trap2 <2>: chapter. (line 1838)
+* log trap2 <1>: chapter. (line 1008)
+* log trap2 <2>: chapter. (line 1830)
* machin: chapter. (line 324)
* machin <1>: chapter. (line 326)
-* machin <2>: chapter. (line 661)
-* machin <3>: chapter. (line 662)
-* machin <4>: chapter. (line 663)
-* machin <5>: chapter. (line 664)
-* machin <6>: chapter. (line 1016)
-* machin <7>: chapter. (line 1018)
-* machin <8>: chapter. (line 1353)
-* machin <9>: chapter. (line 1354)
-* machin <10>: chapter. (line 1355)
-* machin <11>: chapter. (line 1356)
-* machin <12>: chapter. (line 1842)
-* machin <13>: chapter. (line 1844)
-* machin <14>: chapter. (line 2217)
-* machin <15>: chapter. (line 2218)
-* machin <16>: chapter. (line 2219)
-* machin <17>: chapter. (line 2220)
+* machin <2>: chapter. (line 658)
+* machin <3>: chapter. (line 659)
+* machin <4>: chapter. (line 660)
+* machin <5>: chapter. (line 661)
+* machin <6>: chapter. (line 1012)
+* machin <7>: chapter. (line 1014)
+* machin <8>: chapter. (line 1346)
+* machin <9>: chapter. (line 1347)
+* machin <10>: chapter. (line 1348)
+* machin <11>: chapter. (line 1349)
+* machin <12>: chapter. (line 1834)
+* machin <13>: chapter. (line 1836)
+* machin <14>: chapter. (line 2209)
+* machin <15>: chapter. (line 2210)
+* machin <16>: chapter. (line 2211)
+* machin <17>: chapter. (line 2212)
* n--ame: chapter. (line 345)
* n--ame <1>: chapter. (line 348)
-* n--ame <2>: chapter. (line 1037)
-* n--ame <3>: chapter. (line 1040)
-* n--ame <4>: chapter. (line 1865)
-* n--ame <5>: chapter. (line 1868)
+* n--ame <2>: chapter. (line 1033)
+* n--ame <3>: chapter. (line 1036)
+* n--ame <4>: chapter. (line 1857)
+* n--ame <5>: chapter. (line 1860)
* name2: chapter. (line 423)
-* name2 <1>: chapter. (line 1115)
-* name2 <2>: chapter. (line 1944)
-* t--ruc: chapter. (line 2271)
-* T--ruc: chapter. (line 2271)
+* name2 <1>: chapter. (line 1111)
+* name2 <2>: chapter. (line 1936)
+* t--ruc: chapter. (line 2263)
+* T--ruc: chapter. (line 2263)
* truc: chapter. (line 317)
* truc <1>: chapter. (line 339)
-* truc <2>: chapter. (line 1009)
-* truc <3>: chapter. (line 1031)
-* truc <4>: chapter. (line 1835)
-* truc <5>: chapter. (line 1858)
-* xxx, zzz: chapter. (line 2271)
+* truc <2>: chapter. (line 1005)
+* truc <3>: chapter. (line 1027)
+* truc <4>: chapter. (line 1827)
+* truc <5>: chapter. (line 1850)
+* xxx, zzz: chapter. (line 2263)
vr
@@ -2587,8 +2579,8 @@ aaa
* Menu:
* d--eftp_name: chapter. (line 384)
-* d--eftp_name <1>: chapter. (line 1076)
-* d--eftp_name <2>: chapter. (line 1904)
+* d--eftp_name <1>: chapter. (line 1072)
+* d--eftp_name <2>: chapter. (line 1896)
(8)
@@ -2632,291 +2624,291 @@ chapter 2
* Menu:
* -option: chapter. (line 28)
-* -option <1>: chapter. (line 720)
-* -option <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* -option <1>: chapter. (line 716)
+* -option <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ": chapter. (line 28)
-* " <1>: chapter. (line 720)
-* " <2>: chapter. (line 1423)
-* a: chapter. (line 2271)
-* aaa, bbb: chapter. (line 2271)
-* a--a: chapter. (line 2271)
-* a--asis: chapter. (line 522)
-* a--asis <1>: chapter. (line 1214)
-* a--asis <2>: chapter. (line 2045)
+* " <1>: chapter. (line 716)
+* " <2>: chapter. (line 1415)
+* a: chapter. (line 2263)
+* aaa, bbb: chapter. (line 2263)
+* a--a: chapter. (line 2263)
+* a--asis: chapter. (line 519)
+* a--asis <1>: chapter. (line 1207)
+* a--asis <2>: chapter. (line 2037)
aaa, See bbb.
-* b: chapter. (line 523)
-* b <1>: chapter. (line 1215)
-* b <2>: chapter. (line 2046)
-* b--b, c--c: chapter. (line 2271)
-* counting entry: chapter. (line 2613)
-* d--dd, e--ee, f--ff: chapter. (line 2271)
+* b: chapter. (line 520)
+* b <1>: chapter. (line 1208)
+* b <2>: chapter. (line 2038)
+* b--b, c--c: chapter. (line 2263)
+* counting entry: chapter. (line 2605)
+* d--dd, e--ee, f--ff: chapter. (line 2263)
* d--efcv_name: chapter. (line 366)
* d--efcv_name <1>: chapter. (line 369)
-* d--efcv_name <2>: chapter. (line 1058)
-* d--efcv_name <3>: chapter. (line 1061)
-* d--efcv_name <4>: chapter. (line 1886)
-* d--efcv_name <5>: chapter. (line 1889)
+* d--efcv_name <2>: chapter. (line 1054)
+* d--efcv_name <3>: chapter. (line 1057)
+* d--efcv_name <4>: chapter. (line 1878)
+* d--efcv_name <5>: chapter. (line 1881)
* d--efivar_name of c--lass: chapter. (line 411)
-* d--efivar_name of c--lass <1>: chapter. (line 1103)
-* d--efivar_name of c--lass <2>: chapter. (line 1931)
+* d--efivar_name of c--lass <1>: chapter. (line 1099)
+* d--efivar_name of c--lass <2>: chapter. (line 1923)
* d--efopt_name: chapter. (line 402)
-* d--efopt_name <1>: chapter. (line 1094)
-* d--efopt_name <2>: chapter. (line 1922)
+* d--efopt_name <1>: chapter. (line 1090)
+* d--efopt_name <2>: chapter. (line 1914)
* d--eftypecv_name of c--lass: chapter. (line 372)
* d--eftypecv_name of c--lass <1>: chapter. (line 375)
-* d--eftypecv_name of c--lass <2>: chapter. (line 1064)
-* d--eftypecv_name of c--lass <3>: chapter. (line 1067)
-* d--eftypecv_name of c--lass <4>: chapter. (line 1892)
-* d--eftypecv_name of c--lass <5>: chapter. (line 1895)
+* d--eftypecv_name of c--lass <2>: chapter. (line 1060)
+* d--eftypecv_name of c--lass <3>: chapter. (line 1063)
+* d--eftypecv_name of c--lass <4>: chapter. (line 1884)
+* d--eftypecv_name of c--lass <5>: chapter. (line 1887)
* d--eftypecv_name2 of c--lass2: chapter. (line 443)
* d--eftypecv_name2 of c--lass2 <1>: chapter. (line 446)
-* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1135)
-* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1138)
-* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1964)
-* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1967)
+* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1131)
+* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1134)
+* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1956)
+* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1959)
* d--eftypeivar_name of c--lass: chapter. (line 414)
-* d--eftypeivar_name of c--lass <1>: chapter. (line 1106)
-* d--eftypeivar_name of c--lass <2>: chapter. (line 1934)
+* d--eftypeivar_name of c--lass <1>: chapter. (line 1102)
+* d--eftypeivar_name of c--lass <2>: chapter. (line 1926)
* d--eftypevar_name: chapter. (line 408)
-* d--eftypevar_name <1>: chapter. (line 1100)
-* d--eftypevar_name <2>: chapter. (line 1928)
+* d--eftypevar_name <1>: chapter. (line 1096)
+* d--eftypevar_name <2>: chapter. (line 1920)
* d--eftypevr_name: chapter. (line 363)
-* d--eftypevr_name <1>: chapter. (line 1055)
-* d--eftypevr_name <2>: chapter. (line 1883)
+* d--eftypevr_name <1>: chapter. (line 1051)
+* d--eftypevr_name <2>: chapter. (line 1875)
* d--efvar_name: chapter. (line 396)
* d--efvar_name <1>: chapter. (line 399)
-* d--efvar_name <2>: chapter. (line 1088)
-* d--efvar_name <3>: chapter. (line 1091)
-* d--efvar_name <4>: chapter. (line 1916)
-* d--efvar_name <5>: chapter. (line 1919)
+* d--efvar_name <2>: chapter. (line 1084)
+* d--efvar_name <3>: chapter. (line 1087)
+* d--efvar_name <4>: chapter. (line 1908)
+* d--efvar_name <5>: chapter. (line 1911)
* d--efvr_name: chapter. (line 342)
-* d--efvr_name <1>: chapter. (line 1034)
-* d--efvr_name <2>: chapter. (line 1862)
+* d--efvr_name <1>: chapter. (line 1030)
+* d--efvr_name <2>: chapter. (line 1854)
ddd: See also ccc.
ddd: See also ccc.
-* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2271)
-* index entry between item and itemx: chapter. (line 527)
-* index entry between item and itemx <1>: chapter. (line 657)
-* index entry between item and itemx <2>: chapter. (line 1219)
-* index entry between item and itemx <3>: chapter. (line 1349)
-* index entry between item and itemx <4>: chapter. (line 2050)
-* index entry between item and itemx <5>: chapter. (line 2213)
-* index entry in footnote: chapter. (line 2608)
+* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2263)
+* index entry between item and itemx: chapter. (line 524)
+* index entry between item and itemx <1>: chapter. (line 654)
+* index entry between item and itemx <2>: chapter. (line 1212)
+* index entry between item and itemx <3>: chapter. (line 1342)
+* index entry between item and itemx <4>: chapter. (line 2042)
+* index entry between item and itemx <5>: chapter. (line 2205)
+* index entry in footnote: chapter. (line 2600)
* index entry within deffn: chapter. (line 317)
-* index entry within deffn <1>: chapter. (line 1009)
-* index entry within deffn <2>: chapter. (line 1835)
+* index entry within deffn <1>: chapter. (line 1005)
+* index entry within deffn <2>: chapter. (line 1827)
* index entry within itemize: chapter. (line 228)
-* index entry within itemize <1>: chapter. (line 920)
-* index entry within itemize <2>: chapter. (line 1746)
+* index entry within itemize <1>: chapter. (line 916)
+* index entry within itemize <2>: chapter. (line 1738)
* index entry within multitable: chapter. (line 250)
-* index entry within multitable <1>: chapter. (line 942)
-* index entry within multitable <2>: chapter. (line 1769)
-* t-ruc: chapter. (line 2271)
-* T-ruc: chapter. (line 2271)
+* index entry within multitable <1>: chapter. (line 938)
+* index entry within multitable <2>: chapter. (line 1761)
+* t-ruc: chapter. (line 2263)
+* T-ruc: chapter. (line 2263)
* vtable i--tem code kbdinputstyle: chapter. (line 152)
-* vtable i--tem code kbdinputstyle <1>: chapter. (line 844)
-* vtable i--tem code kbdinputstyle <2>: chapter. (line 1669)
+* vtable i--tem code kbdinputstyle <1>: chapter. (line 840)
+* vtable i--tem code kbdinputstyle <2>: chapter. (line 1661)
* vtable i--tem default kbdinputstyle: chapter. (line 147)
-* vtable i--tem default kbdinputstyle <1>: chapter. (line 839)
-* vtable i--tem default kbdinputstyle <2>: chapter. (line 1664)
+* vtable i--tem default kbdinputstyle <1>: chapter. (line 835)
+* vtable i--tem default kbdinputstyle <2>: chapter. (line 1656)
* vtable i--tem distinct kbdinputstyle: chapter. (line 162)
-* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 854)
-* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1679)
+* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 850)
+* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1671)
* vtable i--tem example kbdinputstyle: chapter. (line 157)
-* vtable i--tem example kbdinputstyle <1>: chapter. (line 849)
-* vtable i--tem example kbdinputstyle <2>: chapter. (line 1674)
+* vtable i--tem example kbdinputstyle <1>: chapter. (line 845)
+* vtable i--tem example kbdinputstyle <2>: chapter. (line 1666)
* vtable i--tem in example code kbdinputstyle: chapter. (line 154)
-* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 846)
-* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1671)
+* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 842)
+* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1663)
* vtable i--tem in example default kbdinputstyle: chapter. (line 149)
* vtable i--tem in example default kbdinputstyle <1>: chapter.
- (line 841)
+ (line 837)
* vtable i--tem in example default kbdinputstyle <2>: chapter.
- (line 1666)
+ (line 1658)
* vtable i--tem in example distinct kbdinputstyle: chapter. (line 164)
* vtable i--tem in example distinct kbdinputstyle <1>: chapter.
- (line 856)
+ (line 852)
* vtable i--tem in example distinct kbdinputstyle <2>: chapter.
- (line 1681)
+ (line 1673)
* vtable i--tem in example example kbdinputstyle: chapter. (line 159)
* vtable i--tem in example example kbdinputstyle <1>: chapter.
- (line 851)
+ (line 847)
* vtable i--tem in example example kbdinputstyle <2>: chapter.
- (line 1676)
+ (line 1668)
* Menu:
* --foption: chapter. (line 28)
-* --foption <1>: chapter. (line 720)
-* --foption <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* --foption <1>: chapter. (line 716)
+* --foption <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ``: chapter. (line 28)
-* `` <1>: chapter. (line 720)
-* `` <2>: chapter. (line 1423)
+* `` <1>: chapter. (line 716)
+* `` <2>: chapter. (line 1415)
* a: chapter. (line 330)
-* a <1>: chapter. (line 526)
-* a <2>: chapter. (line 656)
-* a <3>: chapter. (line 1022)
-* a <4>: chapter. (line 1218)
-* a <5>: chapter. (line 1348)
-* a <6>: chapter. (line 1848)
-* a <7>: chapter. (line 2049)
-* a <8>: chapter. (line 2212)
-* a <9>: chapter. (line 2271)
-* after: chapter. (line 667)
-* after <1>: chapter. (line 1359)
-* after <2>: chapter. (line 2223)
+* a <1>: chapter. (line 523)
+* a <2>: chapter. (line 653)
+* a <3>: chapter. (line 1018)
+* a <4>: chapter. (line 1211)
+* a <5>: chapter. (line 1341)
+* a <6>: chapter. (line 1840)
+* a <7>: chapter. (line 2041)
+* a <8>: chapter. (line 2204)
+* a <9>: chapter. (line 2263)
+* after: chapter. (line 664)
+* after <1>: chapter. (line 1352)
+* after <2>: chapter. (line 2215)
* arg2: chapter. (line 449)
-* arg2 <1>: chapter. (line 1141)
-* arg2 <2>: chapter. (line 1971)
-* b: chapter. (line 527)
-* b <1>: chapter. (line 657)
-* b <2>: chapter. (line 1219)
-* b <3>: chapter. (line 1349)
-* b <4>: chapter. (line 2050)
-* b <5>: chapter. (line 2213)
+* arg2 <1>: chapter. (line 1137)
+* arg2 <2>: chapter. (line 1963)
+* b: chapter. (line 524)
+* b <1>: chapter. (line 654)
+* b <2>: chapter. (line 1212)
+* b <3>: chapter. (line 1342)
+* b <4>: chapter. (line 2042)
+* b <5>: chapter. (line 2205)
* bidule machin: chapter. (line 325)
-* bidule machin <1>: chapter. (line 1017)
-* bidule machin <2>: chapter. (line 1843)
+* bidule machin <1>: chapter. (line 1013)
+* bidule machin <2>: chapter. (line 1835)
* d--effn_name: chapter. (line 309)
-* d--effn_name <1>: chapter. (line 1001)
-* d--effn_name <2>: chapter. (line 1827)
+* d--effn_name <1>: chapter. (line 997)
+* d--effn_name <2>: chapter. (line 1819)
* d--efmac_name: chapter. (line 390)
-* d--efmac_name <1>: chapter. (line 1082)
-* d--efmac_name <2>: chapter. (line 1910)
+* d--efmac_name <1>: chapter. (line 1078)
+* d--efmac_name <2>: chapter. (line 1902)
* d--efmethod_name on c--lass: chapter. (line 417)
-* d--efmethod_name on c--lass <1>: chapter. (line 1109)
-* d--efmethod_name on c--lass <2>: chapter. (line 1937)
+* d--efmethod_name on c--lass <1>: chapter. (line 1105)
+* d--efmethod_name on c--lass <2>: chapter. (line 1929)
* d--efop_name on c--lass: chapter. (line 378)
* d--efop_name on c--lass <1>: chapter. (line 381)
-* d--efop_name on c--lass <2>: chapter. (line 1070)
-* d--efop_name on c--lass <3>: chapter. (line 1073)
-* d--efop_name on c--lass <4>: chapter. (line 1898)
-* d--efop_name on c--lass <5>: chapter. (line 1901)
+* d--efop_name on c--lass <2>: chapter. (line 1066)
+* d--efop_name on c--lass <3>: chapter. (line 1069)
+* d--efop_name on c--lass <4>: chapter. (line 1890)
+* d--efop_name on c--lass <5>: chapter. (line 1893)
* d--efspec_name: chapter. (line 393)
-* d--efspec_name <1>: chapter. (line 1085)
-* d--efspec_name <2>: chapter. (line 1913)
+* d--efspec_name <1>: chapter. (line 1081)
+* d--efspec_name <2>: chapter. (line 1905)
* d--eftypefn_name: chapter. (line 351)
* d--eftypefn_name <1>: chapter. (line 354)
-* d--eftypefn_name <2>: chapter. (line 1043)
-* d--eftypefn_name <3>: chapter. (line 1046)
-* d--eftypefn_name <4>: chapter. (line 1871)
-* d--eftypefn_name <5>: chapter. (line 1874)
+* d--eftypefn_name <2>: chapter. (line 1039)
+* d--eftypefn_name <3>: chapter. (line 1042)
+* d--eftypefn_name <4>: chapter. (line 1863)
+* d--eftypefn_name <5>: chapter. (line 1866)
* d--eftypefn_name2: chapter. (line 428)
-* d--eftypefn_name2 <1>: chapter. (line 1120)
-* d--eftypefn_name2 <2>: chapter. (line 1949)
+* d--eftypefn_name2 <1>: chapter. (line 1116)
+* d--eftypefn_name2 <2>: chapter. (line 1941)
* d--eftypefun_name: chapter. (line 405)
-* d--eftypefun_name <1>: chapter. (line 1097)
-* d--eftypefun_name <2>: chapter. (line 1925)
+* d--eftypefun_name <1>: chapter. (line 1093)
+* d--eftypefun_name <2>: chapter. (line 1917)
* d--eftypemethod_name on c--lass: chapter. (line 420)
-* d--eftypemethod_name on c--lass <1>: chapter. (line 1112)
-* d--eftypemethod_name on c--lass <2>: chapter. (line 1940)
+* d--eftypemethod_name on c--lass <1>: chapter. (line 1108)
+* d--eftypemethod_name on c--lass <2>: chapter. (line 1932)
* d--eftypeop_name on c--lass: chapter. (line 357)
* d--eftypeop_name on c--lass <1>: chapter. (line 360)
-* d--eftypeop_name on c--lass <2>: chapter. (line 1049)
-* d--eftypeop_name on c--lass <3>: chapter. (line 1052)
-* d--eftypeop_name on c--lass <4>: chapter. (line 1877)
-* d--eftypeop_name on c--lass <5>: chapter. (line 1880)
+* d--eftypeop_name on c--lass <2>: chapter. (line 1045)
+* d--eftypeop_name on c--lass <3>: chapter. (line 1048)
+* d--eftypeop_name on c--lass <4>: chapter. (line 1869)
+* d--eftypeop_name on c--lass <5>: chapter. (line 1872)
* d--eftypeop_name2 on c--lass2: chapter. (line 433)
* d--eftypeop_name2 on c--lass2 <1>: chapter. (line 438)
-* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1125)
-* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1130)
-* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1954)
-* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1959)
+* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1121)
+* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1126)
+* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1946)
+* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1951)
* d--efun_name: chapter. (line 387)
-* d--efun_name <1>: chapter. (line 1079)
-* d--efun_name <2>: chapter. (line 1907)
+* d--efun_name <1>: chapter. (line 1075)
+* d--efun_name <2>: chapter. (line 1899)
* de--ffn_name: chapter. (line 312)
-* de--ffn_name <1>: chapter. (line 1004)
-* de--ffn_name <2>: chapter. (line 1830)
+* de--ffn_name <1>: chapter. (line 1000)
+* de--ffn_name <2>: chapter. (line 1822)
* deffn: chapter. (line 333)
* deffn <1>: chapter. (line 335)
-* deffn <2>: chapter. (line 1025)
-* deffn <3>: chapter. (line 1027)
-* deffn <4>: chapter. (line 1852)
-* deffn <5>: chapter. (line 1854)
+* deffn <2>: chapter. (line 1021)
+* deffn <3>: chapter. (line 1023)
+* deffn <4>: chapter. (line 1844)
+* deffn <5>: chapter. (line 1846)
* deffnx: chapter. (line 331)
* deffnx <1>: chapter. (line 336)
-* deffnx <2>: chapter. (line 1023)
-* deffnx <3>: chapter. (line 1028)
-* deffnx <4>: chapter. (line 1849)
-* deffnx <5>: chapter. (line 1855)
-* f---aa: chapter. (line 2271)
+* deffnx <2>: chapter. (line 1019)
+* deffnx <3>: chapter. (line 1024)
+* deffnx <4>: chapter. (line 1841)
+* deffnx <5>: chapter. (line 1847)
+* f---aa: chapter. (line 2263)
f---aaa, See f---bbb.
-* f---bb, f---cc: chapter. (line 2271)
+* f---bb, f---cc: chapter. (line 2263)
f---ddd: See also f---ccc.
f---ddd: See also f---ccc.
-* f---ddd, f---eee, ffff: chapter. (line 2271)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2271)
+* f---ddd, f---eee, ffff: chapter. (line 2263)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2263)
* followed: chapter. (line 328)
-* followed <1>: chapter. (line 665)
-* followed <2>: chapter. (line 1020)
-* followed <3>: chapter. (line 1357)
-* followed <4>: chapter. (line 1846)
-* followed <5>: chapter. (line 2221)
+* followed <1>: chapter. (line 662)
+* followed <2>: chapter. (line 1016)
+* followed <3>: chapter. (line 1350)
+* followed <4>: chapter. (line 1838)
+* followed <5>: chapter. (line 2213)
* I: chapter. (line 316)
* I <1>: chapter. (line 338)
-* I <2>: chapter. (line 1008)
-* I <3>: chapter. (line 1030)
-* I <4>: chapter. (line 1834)
-* I <5>: chapter. (line 1857)
+* I <2>: chapter. (line 1004)
+* I <3>: chapter. (line 1026)
+* I <4>: chapter. (line 1826)
+* I <5>: chapter. (line 1849)
* id i ule: chapter. (line 322)
-* id i ule <1>: chapter. (line 1014)
-* id i ule <2>: chapter. (line 1840)
+* id i ule <1>: chapter. (line 1010)
+* id i ule <2>: chapter. (line 1832)
* id ule: chapter. (line 321)
-* id ule <1>: chapter. (line 1013)
-* id ule <2>: chapter. (line 1839)
-* INVALID: chapter. (line 669)
-* INVALID <1>: chapter. (line 1361)
-* INVALID <2>: chapter. (line 2225)
+* id ule <1>: chapter. (line 1009)
+* id ule <2>: chapter. (line 1831)
+* INVALID: chapter. (line 666)
+* INVALID <1>: chapter. (line 1354)
+* INVALID <2>: chapter. (line 2217)
* log trap: chapter. (line 318)
-* log trap <1>: chapter. (line 1010)
-* log trap <2>: chapter. (line 1836)
+* log trap <1>: chapter. (line 1006)
+* log trap <2>: chapter. (line 1828)
* log trap1: chapter. (line 319)
-* log trap1 <1>: chapter. (line 1011)
-* log trap1 <2>: chapter. (line 1837)
+* log trap1 <1>: chapter. (line 1007)
+* log trap1 <2>: chapter. (line 1829)
* log trap2: chapter. (line 320)
-* log trap2 <1>: chapter. (line 1012)
-* log trap2 <2>: chapter. (line 1838)
+* log trap2 <1>: chapter. (line 1008)
+* log trap2 <2>: chapter. (line 1830)
* machin: chapter. (line 324)
* machin <1>: chapter. (line 326)
-* machin <2>: chapter. (line 661)
-* machin <3>: chapter. (line 662)
-* machin <4>: chapter. (line 663)
-* machin <5>: chapter. (line 664)
-* machin <6>: chapter. (line 1016)
-* machin <7>: chapter. (line 1018)
-* machin <8>: chapter. (line 1353)
-* machin <9>: chapter. (line 1354)
-* machin <10>: chapter. (line 1355)
-* machin <11>: chapter. (line 1356)
-* machin <12>: chapter. (line 1842)
-* machin <13>: chapter. (line 1844)
-* machin <14>: chapter. (line 2217)
-* machin <15>: chapter. (line 2218)
-* machin <16>: chapter. (line 2219)
-* machin <17>: chapter. (line 2220)
+* machin <2>: chapter. (line 658)
+* machin <3>: chapter. (line 659)
+* machin <4>: chapter. (line 660)
+* machin <5>: chapter. (line 661)
+* machin <6>: chapter. (line 1012)
+* machin <7>: chapter. (line 1014)
+* machin <8>: chapter. (line 1346)
+* machin <9>: chapter. (line 1347)
+* machin <10>: chapter. (line 1348)
+* machin <11>: chapter. (line 1349)
+* machin <12>: chapter. (line 1834)
+* machin <13>: chapter. (line 1836)
+* machin <14>: chapter. (line 2209)
+* machin <15>: chapter. (line 2210)
+* machin <16>: chapter. (line 2211)
+* machin <17>: chapter. (line 2212)
* n--ame: chapter. (line 345)
* n--ame <1>: chapter. (line 348)
-* n--ame <2>: chapter. (line 1037)
-* n--ame <3>: chapter. (line 1040)
-* n--ame <4>: chapter. (line 1865)
-* n--ame <5>: chapter. (line 1868)
+* n--ame <2>: chapter. (line 1033)
+* n--ame <3>: chapter. (line 1036)
+* n--ame <4>: chapter. (line 1857)
+* n--ame <5>: chapter. (line 1860)
* name2: chapter. (line 423)
-* name2 <1>: chapter. (line 1115)
-* name2 <2>: chapter. (line 1944)
-* t--ruc: chapter. (line 2271)
-* T--ruc: chapter. (line 2271)
+* name2 <1>: chapter. (line 1111)
+* name2 <2>: chapter. (line 1936)
+* t--ruc: chapter. (line 2263)
+* T--ruc: chapter. (line 2263)
* truc: chapter. (line 317)
* truc <1>: chapter. (line 339)
-* truc <2>: chapter. (line 1009)
-* truc <3>: chapter. (line 1031)
-* truc <4>: chapter. (line 1835)
-* truc <5>: chapter. (line 1858)
-* xxx, zzz: chapter. (line 2271)
+* truc <2>: chapter. (line 1005)
+* truc <3>: chapter. (line 1027)
+* truc <4>: chapter. (line 1827)
+* truc <5>: chapter. (line 1850)
+* xxx, zzz: chapter. (line 2263)
Top section
1 chapter
diff --git
a/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.txt
b/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.txt
index a993e27f11..35b50516b6 100644
---
a/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.txt
+++
b/tp/tests/layout/res_parser/formatting_plaintext_ascii_punctuation/formatting.txt
@@ -452,70 +452,67 @@ s-mallformat
'@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}' See cross r--ef name@: (file n---ame@)c---hapter@.
-'@ref{chapter, cross ref name, title, file name, manual}' see cross ref
+'@ref{chapter, cross ref name, title, file name, manual}' cross ref
name: (file name)chapter '@pxref{chapter, cross ref name, title, file
name, manual}' see cross ref name: (file name)chapter '@inforef{chapter,
-cross ref name, file name}' see cross ref name: (file name)chapter
+cross ref name, file name}' See cross ref name: (file name)chapter
- '@ref{chapter}' see chapter:: '@xref{chapter}' See chapter::.
-'@pxref{chapter}' see chapter:: '@ref{s--ect@comma{}ion}' see
-s--ect,ion::
+ '@ref{chapter}' chapter:: '@xref{chapter}' See chapter::.
+'@pxref{chapter}' see chapter:: '@ref{s--ect@comma{}ion}' s--ect,ion::
'@ref{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{} in
-title, a comma@comma{} in file, a @comma{} in manual name }' see a , in
+title, a comma@comma{} in file, a @comma{} in manual name }' a , in
cross ref: (a comma, in file)s--ect,ion
- '@ref{chapter,cross ref name}' see cross ref name: chapter
-'@ref{chapter,,title}' see title: chapter '@ref{chapter,,,file name}'
-see (file name)chapter:: '@ref{chapter,,,,manual}' see ()chapter::
-'@ref{chapter,cross ref name,title,}' see cross ref name: chapter
-'@ref{chapter,cross ref name,,file name}' see cross ref name: (file
-name)chapter '@ref{chapter,cross ref name,,,manual}' see cross ref name:
-()chapter '@ref{chapter,cross ref name,title,file name}' see cross ref
-name: (file name)chapter '@ref{chapter,cross ref name,title,,manual}'
-see cross ref name: ()chapter '@ref{chapter,cross ref name,title, file
-name, manual}' see cross ref name: (file name)chapter
-'@ref{chapter,,title,file name}' see title: (file name)chapter
-'@ref{chapter,,title,,manual}' see title: ()chapter
-'@ref{chapter,,title, file name, manual}' see title: (file name)chapter
-'@ref{chapter,,,file name,manual}' see (file name)chapter::
-
- '@ref{(pman)anode,cross ref name}' see cross ref name: (pman)anode
-'@ref{(pman)anode,,title}' see title: (pman)anode
-'@ref{(pman)anode,,,file name}' see (file name)(pman)anode::
-'@ref{(pman)anode,,,,manual}' see ()(pman)anode::
-'@ref{(pman)anode,cross ref name,title,}' see cross ref name:
-(pman)anode '@ref{(pman)anode,cross ref name,,file name}' see cross ref
-name: (file name)(pman)anode '@ref{(pman)anode,cross ref name,,,manual}'
-see cross ref name: ()(pman)anode '@ref{(pman)anode,cross ref
-name,title,file name}' see cross ref name: (file name)(pman)anode
-'@ref{(pman)anode,cross ref name,title,,manual}' see cross ref name:
+ '@ref{chapter,cross ref name}' cross ref name: chapter
+'@ref{chapter,,title}' title: chapter '@ref{chapter,,,file name}' (file
+name)chapter:: '@ref{chapter,,,,manual}' ()chapter:: '@ref{chapter,cross
+ref name,title,}' cross ref name: chapter '@ref{chapter,cross ref
+name,,file name}' cross ref name: (file name)chapter '@ref{chapter,cross
+ref name,,,manual}' cross ref name: ()chapter '@ref{chapter,cross ref
+name,title,file name}' cross ref name: (file name)chapter
+'@ref{chapter,cross ref name,title,,manual}' cross ref name: ()chapter
+'@ref{chapter,cross ref name,title, file name, manual}' cross ref name:
+(file name)chapter '@ref{chapter,,title,file name}' title: (file
+name)chapter '@ref{chapter,,title,,manual}' title: ()chapter
+'@ref{chapter,,title, file name, manual}' title: (file name)chapter
+'@ref{chapter,,,file name,manual}' (file name)chapter::
+
+ '@ref{(pman)anode,cross ref name}' cross ref name: (pman)anode
+'@ref{(pman)anode,,title}' title: (pman)anode '@ref{(pman)anode,,,file
+name}' (file name)(pman)anode:: '@ref{(pman)anode,,,,manual}'
+()(pman)anode:: '@ref{(pman)anode,cross ref name,title,}' cross ref
+name: (pman)anode '@ref{(pman)anode,cross ref name,,file name}' cross
+ref name: (file name)(pman)anode '@ref{(pman)anode,cross ref
+name,,,manual}' cross ref name: ()(pman)anode '@ref{(pman)anode,cross
+ref name,title,file name}' cross ref name: (file name)(pman)anode
+'@ref{(pman)anode,cross ref name,title,,manual}' cross ref name:
()(pman)anode '@ref{(pman)anode,cross ref name,title, file name,
-manual}' see cross ref name: (file name)(pman)anode
-'@ref{(pman)anode,,title,file name}' see title: (file name)(pman)anode
-'@ref{(pman)anode,,title,,manual}' see title: ()(pman)anode
-'@ref{(pman)anode,,title, file name, manual}' see title: (file
-name)(pman)anode '@ref{(pman)anode,,,file name,manual}' see (file
+manual}' cross ref name: (file name)(pman)anode
+'@ref{(pman)anode,,title,file name}' title: (file name)(pman)anode
+'@ref{(pman)anode,,title,,manual}' title: ()(pman)anode
+'@ref{(pman)anode,,title, file name, manual}' title: (file
+name)(pman)anode '@ref{(pman)anode,,,file name,manual}' (file
name)(pman)anode::
- '@inforef{chapter, cross ref name, file name}' see cross ref name:
-(file name)chapter '@inforef{chapter}' see chapter:: '@inforef{chapter,
-cross ref name}' see cross ref name: chapter '@inforef{chapter,,file
-name}' see (file name)chapter:: '@inforef{node, cross ref name, file
-name}' see cross ref name: (file name)node '@inforef{node}' see node::
-'@inforef{node, cross ref name}' see cross ref name: node
-'@inforef{node,,file name}' see (file name)node:: '@inforef{chapter,
-cross ref name, file name, spurious arg}' see cross ref name: (file
+ '@inforef{chapter, cross ref name, file name}' See cross ref name:
+(file name)chapter '@inforef{chapter}' See chapter:: '@inforef{chapter,
+cross ref name}' See cross ref name: chapter '@inforef{chapter,,file
+name}' See (file name)chapter:: '@inforef{node, cross ref name, file
+name}' See cross ref name: (file name)node '@inforef{node}' See node::
+'@inforef{node, cross ref name}' See cross ref name: node
+'@inforef{node,,file name}' See (file name)node:: '@inforef{chapter,
+cross ref name, file name, spurious arg}' See cross ref name: (file
name, spurious arg)chapter
'@inforef{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{}
-in file}' see a , in cross ref: (a comma, in file)s--ect,ion
+in file}' See a , in cross ref: (a comma, in file)s--ect,ion
- 'see chapter::'.
+ 'chapter::'.
- see cross ref with uref uref1 (href://http/myhost.com/index.html):
-(info file with uref3 uref3 (href://http/myhost.com/index3.html))ext see
-cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info
+file with uref3 uref3 (href://http/myhost.com/index3.html))ext cross ref
+with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l-ine
@@ -675,36 +672,35 @@ b
g-roupe
- '@ref{node}' see node::
-
- '@ref{,cross ref name}' see cross ref name: '@ref{,,title}' see
-title: '@ref{,,,file name}' see (file name):: '@ref{,,,,manual}' see
-():: '@ref{node,cross ref name}' see cross ref name: node
-'@ref{node,,title}' see title: node '@ref{node,,,file name}' see (file
-name)node:: '@ref{node,,,,manual}' see ()node:: '@ref{node,cross ref
-name,title,}' see cross ref name: node '@ref{node,cross ref name,,file
-name}' see cross ref name: (file name)node '@ref{node,cross ref
-name,,,manual}' see cross ref name: ()node '@ref{node,cross ref
-name,title,file name}' see cross ref name: (file name)node
-'@ref{node,cross ref name,title,,manual}' see cross ref name: ()node
-'@ref{node,cross ref name,title, file name, manual}' see cross ref name:
-(file name)node '@ref{node,,title,file name}' see title: (file name)node
-'@ref{node,,title,,manual}' see title: ()node '@ref{chapter,,title, file
-name, manual}' see title: (file name)chapter '@ref{node,,title, file
-name, manual}' see title: (file name)node '@ref{node,,,file
-name,manual}' see (file name)node:: '@ref{,cross ref name,title,}' see
-cross ref name: '@ref{,cross ref name,,file name}' see cross ref name:
-(file name) '@ref{,cross ref name,,,manual}' see cross ref name: ()
-'@ref{,cross ref name,title,file name}' see cross ref name: (file name)
-'@ref{,cross ref name,title,,manual}' see cross ref name: ()
-'@ref{,cross ref name,title, file name, manual}' see cross ref name:
-(file name) '@ref{,,title,file name}' see title: (file name)
-'@ref{,,title,,manual}' see title: () '@ref{,,title, file name, manual}'
-see title: (file name) '@ref{,,,file name,manual}' see (file name)::
-
- '@inforef{,cross ref name }' see cross ref name: '@inforef{,,file
-name}' see (file name):: '@inforef{,cross ref name, file name}' see
-cross ref name: (file name) '@inforef{}' see ::
+ '@ref{node}' node::
+
+ '@ref{,cross ref name}' cross ref name: '@ref{,,title}' title:
+'@ref{,,,file name}' (file name):: '@ref{,,,,manual}' ()::
+'@ref{node,cross ref name}' cross ref name: node '@ref{node,,title}'
+title: node '@ref{node,,,file name}' (file name)node::
+'@ref{node,,,,manual}' ()node:: '@ref{node,cross ref name,title,}' cross
+ref name: node '@ref{node,cross ref name,,file name}' cross ref name:
+(file name)node '@ref{node,cross ref name,,,manual}' cross ref name:
+()node '@ref{node,cross ref name,title,file name}' cross ref name: (file
+name)node '@ref{node,cross ref name,title,,manual}' cross ref name:
+()node '@ref{node,cross ref name,title, file name, manual}' cross ref
+name: (file name)node '@ref{node,,title,file name}' title: (file
+name)node '@ref{node,,title,,manual}' title: ()node
+'@ref{chapter,,title, file name, manual}' title: (file name)chapter
+'@ref{node,,title, file name, manual}' title: (file name)node
+'@ref{node,,,file name,manual}' (file name)node:: '@ref{,cross ref
+name,title,}' cross ref name: '@ref{,cross ref name,,file name}' cross
+ref name: (file name) '@ref{,cross ref name,,,manual}' cross ref name:
+() '@ref{,cross ref name,title,file name}' cross ref name: (file name)
+'@ref{,cross ref name,title,,manual}' cross ref name: () '@ref{,cross
+ref name,title, file name, manual}' cross ref name: (file name)
+'@ref{,,title,file name}' title: (file name) '@ref{,,title,,manual}'
+title: () '@ref{,,title, file name, manual}' title: (file name)
+'@ref{,,,file name,manual}' (file name)::
+
+ '@inforef{,cross ref name }' See cross ref name: '@inforef{,,file
+name}' See (file name):: '@inforef{,cross ref name, file name}' See
+cross ref name: (file name) '@inforef{}' See ::
Normal text
@@ -1144,70 +1140,67 @@ s-mallformat
'@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@}' See cross r--ef name@: (file n---ame@)c---hapter@.
-'@ref{chapter, cross ref name, title, file name, manual}' see cross ref
+'@ref{chapter, cross ref name, title, file name, manual}' cross ref
name: (file name)chapter '@pxref{chapter, cross ref name, title, file
name, manual}' see cross ref name: (file name)chapter '@inforef{chapter,
-cross ref name, file name}' see cross ref name: (file name)chapter
+cross ref name, file name}' See cross ref name: (file name)chapter
- '@ref{chapter}' see chapter:: '@xref{chapter}' See chapter::.
-'@pxref{chapter}' see chapter:: '@ref{s--ect@comma{}ion}' see
-s--ect,ion::
+ '@ref{chapter}' chapter:: '@xref{chapter}' See chapter::.
+'@pxref{chapter}' see chapter:: '@ref{s--ect@comma{}ion}' s--ect,ion::
'@ref{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{} in
-title, a comma@comma{} in file, a @comma{} in manual name }' see a , in
+title, a comma@comma{} in file, a @comma{} in manual name }' a , in
cross ref: (a comma, in file)s--ect,ion
- '@ref{chapter,cross ref name}' see cross ref name: chapter
-'@ref{chapter,,title}' see title: chapter '@ref{chapter,,,file name}'
-see (file name)chapter:: '@ref{chapter,,,,manual}' see ()chapter::
-'@ref{chapter,cross ref name,title,}' see cross ref name: chapter
-'@ref{chapter,cross ref name,,file name}' see cross ref name: (file
-name)chapter '@ref{chapter,cross ref name,,,manual}' see cross ref name:
-()chapter '@ref{chapter,cross ref name,title,file name}' see cross ref
-name: (file name)chapter '@ref{chapter,cross ref name,title,,manual}'
-see cross ref name: ()chapter '@ref{chapter,cross ref name,title, file
-name, manual}' see cross ref name: (file name)chapter
-'@ref{chapter,,title,file name}' see title: (file name)chapter
-'@ref{chapter,,title,,manual}' see title: ()chapter
-'@ref{chapter,,title, file name, manual}' see title: (file name)chapter
-'@ref{chapter,,,file name,manual}' see (file name)chapter::
-
- '@ref{(pman)anode,cross ref name}' see cross ref name: (pman)anode
-'@ref{(pman)anode,,title}' see title: (pman)anode
-'@ref{(pman)anode,,,file name}' see (file name)(pman)anode::
-'@ref{(pman)anode,,,,manual}' see ()(pman)anode::
-'@ref{(pman)anode,cross ref name,title,}' see cross ref name:
-(pman)anode '@ref{(pman)anode,cross ref name,,file name}' see cross ref
-name: (file name)(pman)anode '@ref{(pman)anode,cross ref name,,,manual}'
-see cross ref name: ()(pman)anode '@ref{(pman)anode,cross ref
-name,title,file name}' see cross ref name: (file name)(pman)anode
-'@ref{(pman)anode,cross ref name,title,,manual}' see cross ref name:
+ '@ref{chapter,cross ref name}' cross ref name: chapter
+'@ref{chapter,,title}' title: chapter '@ref{chapter,,,file name}' (file
+name)chapter:: '@ref{chapter,,,,manual}' ()chapter:: '@ref{chapter,cross
+ref name,title,}' cross ref name: chapter '@ref{chapter,cross ref
+name,,file name}' cross ref name: (file name)chapter '@ref{chapter,cross
+ref name,,,manual}' cross ref name: ()chapter '@ref{chapter,cross ref
+name,title,file name}' cross ref name: (file name)chapter
+'@ref{chapter,cross ref name,title,,manual}' cross ref name: ()chapter
+'@ref{chapter,cross ref name,title, file name, manual}' cross ref name:
+(file name)chapter '@ref{chapter,,title,file name}' title: (file
+name)chapter '@ref{chapter,,title,,manual}' title: ()chapter
+'@ref{chapter,,title, file name, manual}' title: (file name)chapter
+'@ref{chapter,,,file name,manual}' (file name)chapter::
+
+ '@ref{(pman)anode,cross ref name}' cross ref name: (pman)anode
+'@ref{(pman)anode,,title}' title: (pman)anode '@ref{(pman)anode,,,file
+name}' (file name)(pman)anode:: '@ref{(pman)anode,,,,manual}'
+()(pman)anode:: '@ref{(pman)anode,cross ref name,title,}' cross ref
+name: (pman)anode '@ref{(pman)anode,cross ref name,,file name}' cross
+ref name: (file name)(pman)anode '@ref{(pman)anode,cross ref
+name,,,manual}' cross ref name: ()(pman)anode '@ref{(pman)anode,cross
+ref name,title,file name}' cross ref name: (file name)(pman)anode
+'@ref{(pman)anode,cross ref name,title,,manual}' cross ref name:
()(pman)anode '@ref{(pman)anode,cross ref name,title, file name,
-manual}' see cross ref name: (file name)(pman)anode
-'@ref{(pman)anode,,title,file name}' see title: (file name)(pman)anode
-'@ref{(pman)anode,,title,,manual}' see title: ()(pman)anode
-'@ref{(pman)anode,,title, file name, manual}' see title: (file
-name)(pman)anode '@ref{(pman)anode,,,file name,manual}' see (file
+manual}' cross ref name: (file name)(pman)anode
+'@ref{(pman)anode,,title,file name}' title: (file name)(pman)anode
+'@ref{(pman)anode,,title,,manual}' title: ()(pman)anode
+'@ref{(pman)anode,,title, file name, manual}' title: (file
+name)(pman)anode '@ref{(pman)anode,,,file name,manual}' (file
name)(pman)anode::
- '@inforef{chapter, cross ref name, file name}' see cross ref name:
-(file name)chapter '@inforef{chapter}' see chapter:: '@inforef{chapter,
-cross ref name}' see cross ref name: chapter '@inforef{chapter,,file
-name}' see (file name)chapter:: '@inforef{node, cross ref name, file
-name}' see cross ref name: (file name)node '@inforef{node}' see node::
-'@inforef{node, cross ref name}' see cross ref name: node
-'@inforef{node,,file name}' see (file name)node:: '@inforef{chapter,
-cross ref name, file name, spurious arg}' see cross ref name: (file
+ '@inforef{chapter, cross ref name, file name}' See cross ref name:
+(file name)chapter '@inforef{chapter}' See chapter:: '@inforef{chapter,
+cross ref name}' See cross ref name: chapter '@inforef{chapter,,file
+name}' See (file name)chapter:: '@inforef{node, cross ref name, file
+name}' See cross ref name: (file name)node '@inforef{node}' See node::
+'@inforef{node, cross ref name}' See cross ref name: node
+'@inforef{node,,file name}' See (file name)node:: '@inforef{chapter,
+cross ref name, file name, spurious arg}' See cross ref name: (file
name, spurious arg)chapter
'@inforef{s--ect@comma{}ion, a @comma{} in cross ref, a comma@comma{}
-in file}' see a , in cross ref: (a comma, in file)s--ect,ion
+in file}' See a , in cross ref: (a comma, in file)s--ect,ion
- 'see chapter::'.
+ 'chapter::'.
- see cross ref with uref uref1 (href://http/myhost.com/index.html):
-(info file with uref3 uref3 (href://http/myhost.com/index3.html))ext see
-cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info
+file with uref3 uref3 (href://http/myhost.com/index3.html))ext cross ref
+with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l-ine
@@ -1367,36 +1360,35 @@ b
g-roupe
- '@ref{node}' see node::
-
- '@ref{,cross ref name}' see cross ref name: '@ref{,,title}' see
-title: '@ref{,,,file name}' see (file name):: '@ref{,,,,manual}' see
-():: '@ref{node,cross ref name}' see cross ref name: node
-'@ref{node,,title}' see title: node '@ref{node,,,file name}' see (file
-name)node:: '@ref{node,,,,manual}' see ()node:: '@ref{node,cross ref
-name,title,}' see cross ref name: node '@ref{node,cross ref name,,file
-name}' see cross ref name: (file name)node '@ref{node,cross ref
-name,,,manual}' see cross ref name: ()node '@ref{node,cross ref
-name,title,file name}' see cross ref name: (file name)node
-'@ref{node,cross ref name,title,,manual}' see cross ref name: ()node
-'@ref{node,cross ref name,title, file name, manual}' see cross ref name:
-(file name)node '@ref{node,,title,file name}' see title: (file name)node
-'@ref{node,,title,,manual}' see title: ()node '@ref{chapter,,title, file
-name, manual}' see title: (file name)chapter '@ref{node,,title, file
-name, manual}' see title: (file name)node '@ref{node,,,file
-name,manual}' see (file name)node:: '@ref{,cross ref name,title,}' see
-cross ref name: '@ref{,cross ref name,,file name}' see cross ref name:
-(file name) '@ref{,cross ref name,,,manual}' see cross ref name: ()
-'@ref{,cross ref name,title,file name}' see cross ref name: (file name)
-'@ref{,cross ref name,title,,manual}' see cross ref name: ()
-'@ref{,cross ref name,title, file name, manual}' see cross ref name:
-(file name) '@ref{,,title,file name}' see title: (file name)
-'@ref{,,title,,manual}' see title: () '@ref{,,title, file name, manual}'
-see title: (file name) '@ref{,,,file name,manual}' see (file name)::
-
- '@inforef{,cross ref name }' see cross ref name: '@inforef{,,file
-name}' see (file name):: '@inforef{,cross ref name, file name}' see
-cross ref name: (file name) '@inforef{}' see ::
+ '@ref{node}' node::
+
+ '@ref{,cross ref name}' cross ref name: '@ref{,,title}' title:
+'@ref{,,,file name}' (file name):: '@ref{,,,,manual}' ()::
+'@ref{node,cross ref name}' cross ref name: node '@ref{node,,title}'
+title: node '@ref{node,,,file name}' (file name)node::
+'@ref{node,,,,manual}' ()node:: '@ref{node,cross ref name,title,}' cross
+ref name: node '@ref{node,cross ref name,,file name}' cross ref name:
+(file name)node '@ref{node,cross ref name,,,manual}' cross ref name:
+()node '@ref{node,cross ref name,title,file name}' cross ref name: (file
+name)node '@ref{node,cross ref name,title,,manual}' cross ref name:
+()node '@ref{node,cross ref name,title, file name, manual}' cross ref
+name: (file name)node '@ref{node,,title,file name}' title: (file
+name)node '@ref{node,,title,,manual}' title: ()node
+'@ref{chapter,,title, file name, manual}' title: (file name)chapter
+'@ref{node,,title, file name, manual}' title: (file name)node
+'@ref{node,,,file name,manual}' (file name)node:: '@ref{,cross ref
+name,title,}' cross ref name: '@ref{,cross ref name,,file name}' cross
+ref name: (file name) '@ref{,cross ref name,,,manual}' cross ref name:
+() '@ref{,cross ref name,title,file name}' cross ref name: (file name)
+'@ref{,cross ref name,title,,manual}' cross ref name: () '@ref{,cross
+ref name,title, file name, manual}' cross ref name: (file name)
+'@ref{,,title,file name}' title: (file name) '@ref{,,title,,manual}'
+title: () '@ref{,,title, file name, manual}' title: (file name)
+'@ref{,,,file name,manual}' (file name)::
+
+ '@inforef{,cross ref name }' See cross ref name: '@inforef{,,file
+name}' See (file name):: '@inforef{,cross ref name, file name}' See
+cross ref name: (file name) '@inforef{}' See ::
In example.
@@ -1974,71 +1966,71 @@ cross ref name: (file name) '@inforef{}' see ::
@xref{c---hapter@@, cross r---ef name@@, t---itle@@, file n---ame@@,
ma---nual@@} See cross r---ef name@: (file n---ame@)c---hapter@.
- @ref{chapter, cross ref name, title, file name, manual} see cross ref
name: (file name)chapter
+ @ref{chapter, cross ref name, title, file name, manual} cross ref name:
(file name)chapter
@pxref{chapter, cross ref name, title, file name, manual} see cross ref
name: (file name)chapter
- @inforef{chapter, cross ref name, file name} see cross ref name: (file
name)chapter
+ @inforef{chapter, cross ref name, file name} See cross ref name: (file
name)chapter
- @ref{chapter} see chapter::
+ @ref{chapter} chapter::
@xref{chapter} See chapter::.
@pxref{chapter} see chapter::
- @ref{s--ect@comma{}ion} see s--ect,ion::
+ @ref{s--ect@comma{}ion} s--ect,ion::
@ref{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in title, a comma@comma{} in file, a @comma{} in
manual name }
- see a , in cross
+ a , in cross
ref: (a comma, in file)s--ect,ion
- @ref{chapter,cross ref name} see cross ref name: chapter
- @ref{chapter,,title} see title: chapter
- @ref{chapter,,,file name} see (file name)chapter::
- @ref{chapter,,,,manual} see ()chapter::
- @ref{chapter,cross ref name,title,} see cross ref name: chapter
- @ref{chapter,cross ref name,,file name} see cross ref name: (file
name)chapter
- @ref{chapter,cross ref name,,,manual} see cross ref name: ()chapter
- @ref{chapter,cross ref name,title,file name} see cross ref name: (file
name)chapter
- @ref{chapter,cross ref name,title,,manual} see cross ref name: ()chapter
- @ref{chapter,cross ref name,title, file name, manual} see cross ref name:
(file name)chapter
- @ref{chapter,,title,file name} see title: (file name)chapter
- @ref{chapter,,title,,manual} see title: ()chapter
- @ref{chapter,,title, file name, manual} see title: (file name)chapter
- @ref{chapter,,,file name,manual} see (file name)chapter::
-
-
- @ref{(pman)anode,cross ref name} see cross ref name: (pman)anode
- @ref{(pman)anode,,title} see title: (pman)anode
- @ref{(pman)anode,,,file name} see (file name)(pman)anode::
- @ref{(pman)anode,,,,manual} see ()(pman)anode::
- @ref{(pman)anode,cross ref name,title,} see cross ref name: (pman)anode
- @ref{(pman)anode,cross ref name,,file name} see cross ref name: (file
name)(pman)anode
- @ref{(pman)anode,cross ref name,,,manual} see cross ref name:
()(pman)anode
- @ref{(pman)anode,cross ref name,title,file name} see cross ref name:
(file name)(pman)anode
- @ref{(pman)anode,cross ref name,title,,manual} see cross ref name:
()(pman)anode
- @ref{(pman)anode,cross ref name,title, file name, manual} see cross ref
name: (file name)(pman)anode
- @ref{(pman)anode,,title,file name} see title: (file name)(pman)anode
- @ref{(pman)anode,,title,,manual} see title: ()(pman)anode
- @ref{(pman)anode,,title, file name, manual} see title: (file
name)(pman)anode
- @ref{(pman)anode,,,file name,manual} see (file name)(pman)anode::
-
-
- @inforef{chapter, cross ref name, file name} see cross ref name: (file
name)chapter
- @inforef{chapter} see chapter::
- @inforef{chapter, cross ref name} see cross ref name: chapter
- @inforef{chapter,,file name} see (file name)chapter::
- @inforef{node, cross ref name, file name} see cross ref name: (file
name)node
- @inforef{node} see node::
- @inforef{node, cross ref name} see cross ref name: node
- @inforef{node,,file name} see (file name)node::
- @inforef{chapter, cross ref name, file name, spurious arg} see cross ref
name: (file name, spurious arg)chapter
+ @ref{chapter,cross ref name} cross ref name: chapter
+ @ref{chapter,,title} title: chapter
+ @ref{chapter,,,file name} (file name)chapter::
+ @ref{chapter,,,,manual} ()chapter::
+ @ref{chapter,cross ref name,title,} cross ref name: chapter
+ @ref{chapter,cross ref name,,file name} cross ref name: (file name)chapter
+ @ref{chapter,cross ref name,,,manual} cross ref name: ()chapter
+ @ref{chapter,cross ref name,title,file name} cross ref name: (file
name)chapter
+ @ref{chapter,cross ref name,title,,manual} cross ref name: ()chapter
+ @ref{chapter,cross ref name,title, file name, manual} cross ref name:
(file name)chapter
+ @ref{chapter,,title,file name} title: (file name)chapter
+ @ref{chapter,,title,,manual} title: ()chapter
+ @ref{chapter,,title, file name, manual} title: (file name)chapter
+ @ref{chapter,,,file name,manual} (file name)chapter::
+
+
+ @ref{(pman)anode,cross ref name} cross ref name: (pman)anode
+ @ref{(pman)anode,,title} title: (pman)anode
+ @ref{(pman)anode,,,file name} (file name)(pman)anode::
+ @ref{(pman)anode,,,,manual} ()(pman)anode::
+ @ref{(pman)anode,cross ref name,title,} cross ref name: (pman)anode
+ @ref{(pman)anode,cross ref name,,file name} cross ref name: (file
name)(pman)anode
+ @ref{(pman)anode,cross ref name,,,manual} cross ref name: ()(pman)anode
+ @ref{(pman)anode,cross ref name,title,file name} cross ref name: (file
name)(pman)anode
+ @ref{(pman)anode,cross ref name,title,,manual} cross ref name:
()(pman)anode
+ @ref{(pman)anode,cross ref name,title, file name, manual} cross ref name:
(file name)(pman)anode
+ @ref{(pman)anode,,title,file name} title: (file name)(pman)anode
+ @ref{(pman)anode,,title,,manual} title: ()(pman)anode
+ @ref{(pman)anode,,title, file name, manual} title: (file name)(pman)anode
+ @ref{(pman)anode,,,file name,manual} (file name)(pman)anode::
+
+
+ @inforef{chapter, cross ref name, file name} See cross ref name: (file
name)chapter
+ @inforef{chapter} See chapter::
+ @inforef{chapter, cross ref name} See cross ref name: chapter
+ @inforef{chapter,,file name} See (file name)chapter::
+ @inforef{node, cross ref name, file name} See cross ref name: (file
name)node
+ @inforef{node} See node::
+ @inforef{node, cross ref name} See cross ref name: node
+ @inforef{node,,file name} See (file name)node::
+ @inforef{chapter, cross ref name, file name, spurious arg} See cross ref
name: (file name, spurious arg)chapter
@inforef{s--ect@comma{}ion, a @comma{} in cross
ref, a comma@comma{} in file}
- see a , in cross
+ See a , in cross
ref: (a comma, in file)s--ect,ion
- 'see chapter::'.
+ 'chapter::'.
- see cross ref with uref uref1 (href://http/myhost.com/index.html): (info
file with uref3 uref3 (href://http/myhost.com/index3.html))ext
- see cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
+ cross ref with uref uref1 (href://http/myhost.com/index.html): (info file
with uref3 uref3 (href://http/myhost.com/index3.html))ext
+ cross ref with uref uref1 (href://http/myhost.com/index.html): chapter
*a-strong*
l--ine
@@ -2231,42 +2223,42 @@ aaa
g--roupe
- @ref{node} see node::
-
- @ref{,cross ref name} see cross ref name:
- @ref{,,title} see title:
- @ref{,,,file name} see (file name)::
- @ref{,,,,manual} see ()::
- @ref{node,cross ref name} see cross ref name: node
- @ref{node,,title} see title: node
- @ref{node,,,file name} see (file name)node::
- @ref{node,,,,manual} see ()node::
- @ref{node,cross ref name,title,} see cross ref name: node
- @ref{node,cross ref name,,file name} see cross ref name: (file name)node
- @ref{node,cross ref name,,,manual} see cross ref name: ()node
- @ref{node,cross ref name,title,file name} see cross ref name: (file
name)node
- @ref{node,cross ref name,title,,manual} see cross ref name: ()node
- @ref{node,cross ref name,title, file name, manual} see cross ref name:
(file name)node
- @ref{node,,title,file name} see title: (file name)node
- @ref{node,,title,,manual} see title: ()node
- @ref{chapter,,title, file name, manual} see title: (file name)chapter
- @ref{node,,title, file name, manual} see title: (file name)node
- @ref{node,,,file name,manual} see (file name)node::
- @ref{,cross ref name,title,} see cross ref name:
- @ref{,cross ref name,,file name} see cross ref name: (file name)
- @ref{,cross ref name,,,manual} see cross ref name: ()
- @ref{,cross ref name,title,file name} see cross ref name: (file name)
- @ref{,cross ref name,title,,manual} see cross ref name: ()
- @ref{,cross ref name,title, file name, manual} see cross ref name: (file
name)
- @ref{,,title,file name} see title: (file name)
- @ref{,,title,,manual} see title: ()
- @ref{,,title, file name, manual} see title: (file name)
- @ref{,,,file name,manual} see (file name)::
-
- @inforef{,cross ref name } see cross ref name:
- @inforef{,,file name} see (file name)::
- @inforef{,cross ref name, file name} see cross ref name: (file name)
- @inforef{} see ::
+ @ref{node} node::
+
+ @ref{,cross ref name} cross ref name:
+ @ref{,,title} title:
+ @ref{,,,file name} (file name)::
+ @ref{,,,,manual} ()::
+ @ref{node,cross ref name} cross ref name: node
+ @ref{node,,title} title: node
+ @ref{node,,,file name} (file name)node::
+ @ref{node,,,,manual} ()node::
+ @ref{node,cross ref name,title,} cross ref name: node
+ @ref{node,cross ref name,,file name} cross ref name: (file name)node
+ @ref{node,cross ref name,,,manual} cross ref name: ()node
+ @ref{node,cross ref name,title,file name} cross ref name: (file name)node
+ @ref{node,cross ref name,title,,manual} cross ref name: ()node
+ @ref{node,cross ref name,title, file name, manual} cross ref name: (file
name)node
+ @ref{node,,title,file name} title: (file name)node
+ @ref{node,,title,,manual} title: ()node
+ @ref{chapter,,title, file name, manual} title: (file name)chapter
+ @ref{node,,title, file name, manual} title: (file name)node
+ @ref{node,,,file name,manual} (file name)node::
+ @ref{,cross ref name,title,} cross ref name:
+ @ref{,cross ref name,,file name} cross ref name: (file name)
+ @ref{,cross ref name,,,manual} cross ref name: ()
+ @ref{,cross ref name,title,file name} cross ref name: (file name)
+ @ref{,cross ref name,title,,manual} cross ref name: ()
+ @ref{,cross ref name,title, file name, manual} cross ref name: (file name)
+ @ref{,,title,file name} title: (file name)
+ @ref{,,title,,manual} title: ()
+ @ref{,,title, file name, manual} title: (file name)
+ @ref{,,,file name,manual} (file name)::
+
+ @inforef{,cross ref name } See cross ref name:
+ @inforef{,,file name} See (file name)::
+ @inforef{,cross ref name, file name} See cross ref name: (file name)
+ @inforef{} See ::
Text(7)
@@ -2275,306 +2267,306 @@ aaa
* Menu:
-* truc: chapter. (line 2271)
+* truc: chapter. (line 2263)
codeidx
* Menu:
-* a INDEX---ENTRY tẽ --- î: chapter. (line 2271)
+* a INDEX---ENTRY tẽ --- î: chapter. (line 2263)
cp
* Menu:
* -option: chapter. (line 28)
-* -option <1>: chapter. (line 720)
-* -option <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* -option <1>: chapter. (line 716)
+* -option <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ": chapter. (line 28)
-* " <1>: chapter. (line 720)
-* " <2>: chapter. (line 1423)
-* a: chapter. (line 2271)
-* aaa, bbb: chapter. (line 2271)
-* a--a: chapter. (line 2271)
-* a--asis: chapter. (line 522)
-* a--asis <1>: chapter. (line 1214)
-* a--asis <2>: chapter. (line 2045)
+* " <1>: chapter. (line 716)
+* " <2>: chapter. (line 1415)
+* a: chapter. (line 2263)
+* aaa, bbb: chapter. (line 2263)
+* a--a: chapter. (line 2263)
+* a--asis: chapter. (line 519)
+* a--asis <1>: chapter. (line 1207)
+* a--asis <2>: chapter. (line 2037)
aaa, See bbb.
-* b: chapter. (line 523)
-* b <1>: chapter. (line 1215)
-* b <2>: chapter. (line 2046)
-* b--b, c--c: chapter. (line 2271)
+* b: chapter. (line 520)
+* b <1>: chapter. (line 1208)
+* b <2>: chapter. (line 2038)
+* b--b, c--c: chapter. (line 2263)
* counting entry: chapter. (line 0)
-* d--dd, e--ee, f--ff: chapter. (line 2271)
+* d--dd, e--ee, f--ff: chapter. (line 2263)
* d--efcv_name: chapter. (line 366)
* d--efcv_name <1>: chapter. (line 369)
-* d--efcv_name <2>: chapter. (line 1058)
-* d--efcv_name <3>: chapter. (line 1061)
-* d--efcv_name <4>: chapter. (line 1886)
-* d--efcv_name <5>: chapter. (line 1889)
+* d--efcv_name <2>: chapter. (line 1054)
+* d--efcv_name <3>: chapter. (line 1057)
+* d--efcv_name <4>: chapter. (line 1878)
+* d--efcv_name <5>: chapter. (line 1881)
* d--efivar_name of c--lass: chapter. (line 411)
-* d--efivar_name of c--lass <1>: chapter. (line 1103)
-* d--efivar_name of c--lass <2>: chapter. (line 1931)
+* d--efivar_name of c--lass <1>: chapter. (line 1099)
+* d--efivar_name of c--lass <2>: chapter. (line 1923)
* d--efopt_name: chapter. (line 402)
-* d--efopt_name <1>: chapter. (line 1094)
-* d--efopt_name <2>: chapter. (line 1922)
+* d--efopt_name <1>: chapter. (line 1090)
+* d--efopt_name <2>: chapter. (line 1914)
* d--eftypecv_name of c--lass: chapter. (line 372)
* d--eftypecv_name of c--lass <1>: chapter. (line 375)
-* d--eftypecv_name of c--lass <2>: chapter. (line 1064)
-* d--eftypecv_name of c--lass <3>: chapter. (line 1067)
-* d--eftypecv_name of c--lass <4>: chapter. (line 1892)
-* d--eftypecv_name of c--lass <5>: chapter. (line 1895)
+* d--eftypecv_name of c--lass <2>: chapter. (line 1060)
+* d--eftypecv_name of c--lass <3>: chapter. (line 1063)
+* d--eftypecv_name of c--lass <4>: chapter. (line 1884)
+* d--eftypecv_name of c--lass <5>: chapter. (line 1887)
* d--eftypecv_name2 of c--lass2: chapter. (line 443)
* d--eftypecv_name2 of c--lass2 <1>: chapter. (line 446)
-* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1135)
-* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1138)
-* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1964)
-* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1967)
+* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1131)
+* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1134)
+* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1956)
+* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1959)
* d--eftypeivar_name of c--lass: chapter. (line 414)
-* d--eftypeivar_name of c--lass <1>: chapter. (line 1106)
-* d--eftypeivar_name of c--lass <2>: chapter. (line 1934)
+* d--eftypeivar_name of c--lass <1>: chapter. (line 1102)
+* d--eftypeivar_name of c--lass <2>: chapter. (line 1926)
* d--eftypevar_name: chapter. (line 408)
-* d--eftypevar_name <1>: chapter. (line 1100)
-* d--eftypevar_name <2>: chapter. (line 1928)
+* d--eftypevar_name <1>: chapter. (line 1096)
+* d--eftypevar_name <2>: chapter. (line 1920)
* d--eftypevr_name: chapter. (line 363)
-* d--eftypevr_name <1>: chapter. (line 1055)
-* d--eftypevr_name <2>: chapter. (line 1883)
+* d--eftypevr_name <1>: chapter. (line 1051)
+* d--eftypevr_name <2>: chapter. (line 1875)
* d--efvar_name: chapter. (line 396)
* d--efvar_name <1>: chapter. (line 399)
-* d--efvar_name <2>: chapter. (line 1088)
-* d--efvar_name <3>: chapter. (line 1091)
-* d--efvar_name <4>: chapter. (line 1916)
-* d--efvar_name <5>: chapter. (line 1919)
+* d--efvar_name <2>: chapter. (line 1084)
+* d--efvar_name <3>: chapter. (line 1087)
+* d--efvar_name <4>: chapter. (line 1908)
+* d--efvar_name <5>: chapter. (line 1911)
* d--efvr_name: chapter. (line 342)
-* d--efvr_name <1>: chapter. (line 1034)
-* d--efvr_name <2>: chapter. (line 1862)
+* d--efvr_name <1>: chapter. (line 1030)
+* d--efvr_name <2>: chapter. (line 1854)
ddd: See also ccc.
ddd: See also ccc.
-* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2271)
-* index entry between item and itemx: chapter. (line 527)
-* index entry between item and itemx <1>: chapter. (line 657)
-* index entry between item and itemx <2>: chapter. (line 1219)
-* index entry between item and itemx <3>: chapter. (line 1349)
-* index entry between item and itemx <4>: chapter. (line 2050)
-* index entry between item and itemx <5>: chapter. (line 2213)
+* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2263)
+* index entry between item and itemx: chapter. (line 524)
+* index entry between item and itemx <1>: chapter. (line 654)
+* index entry between item and itemx <2>: chapter. (line 1212)
+* index entry between item and itemx <3>: chapter. (line 1342)
+* index entry between item and itemx <4>: chapter. (line 2042)
+* index entry between item and itemx <5>: chapter. (line 2205)
* index entry in footnote: chapter. (line 0)
* index entry within deffn: chapter. (line 317)
-* index entry within deffn <1>: chapter. (line 1009)
-* index entry within deffn <2>: chapter. (line 1835)
+* index entry within deffn <1>: chapter. (line 1005)
+* index entry within deffn <2>: chapter. (line 1827)
* index entry within itemize: chapter. (line 228)
-* index entry within itemize <1>: chapter. (line 920)
-* index entry within itemize <2>: chapter. (line 1746)
+* index entry within itemize <1>: chapter. (line 916)
+* index entry within itemize <2>: chapter. (line 1738)
* index entry within multitable: chapter. (line 250)
-* index entry within multitable <1>: chapter. (line 942)
-* index entry within multitable <2>: chapter. (line 1769)
-* t-ruc: chapter. (line 2271)
-* T-ruc: chapter. (line 2271)
+* index entry within multitable <1>: chapter. (line 938)
+* index entry within multitable <2>: chapter. (line 1761)
+* t-ruc: chapter. (line 2263)
+* T-ruc: chapter. (line 2263)
* vtable i--tem code kbdinputstyle: chapter. (line 152)
-* vtable i--tem code kbdinputstyle <1>: chapter. (line 844)
-* vtable i--tem code kbdinputstyle <2>: chapter. (line 1669)
+* vtable i--tem code kbdinputstyle <1>: chapter. (line 840)
+* vtable i--tem code kbdinputstyle <2>: chapter. (line 1661)
* vtable i--tem default kbdinputstyle: chapter. (line 147)
-* vtable i--tem default kbdinputstyle <1>: chapter. (line 839)
-* vtable i--tem default kbdinputstyle <2>: chapter. (line 1664)
+* vtable i--tem default kbdinputstyle <1>: chapter. (line 835)
+* vtable i--tem default kbdinputstyle <2>: chapter. (line 1656)
* vtable i--tem distinct kbdinputstyle: chapter. (line 162)
-* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 854)
-* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1679)
+* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 850)
+* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1671)
* vtable i--tem example kbdinputstyle: chapter. (line 157)
-* vtable i--tem example kbdinputstyle <1>: chapter. (line 849)
-* vtable i--tem example kbdinputstyle <2>: chapter. (line 1674)
+* vtable i--tem example kbdinputstyle <1>: chapter. (line 845)
+* vtable i--tem example kbdinputstyle <2>: chapter. (line 1666)
* vtable i--tem in example code kbdinputstyle: chapter. (line 154)
-* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 846)
-* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1671)
+* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 842)
+* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1663)
* vtable i--tem in example default kbdinputstyle: chapter. (line 149)
* vtable i--tem in example default kbdinputstyle <1>: chapter.
- (line 841)
+ (line 837)
* vtable i--tem in example default kbdinputstyle <2>: chapter.
- (line 1666)
+ (line 1658)
* vtable i--tem in example distinct kbdinputstyle: chapter. (line 164)
* vtable i--tem in example distinct kbdinputstyle <1>: chapter.
- (line 856)
+ (line 852)
* vtable i--tem in example distinct kbdinputstyle <2>: chapter.
- (line 1681)
+ (line 1673)
* vtable i--tem in example example kbdinputstyle: chapter. (line 159)
* vtable i--tem in example example kbdinputstyle <1>: chapter.
- (line 851)
+ (line 847)
* vtable i--tem in example example kbdinputstyle <2>: chapter.
- (line 1676)
+ (line 1668)
fn
* Menu:
* --foption: chapter. (line 28)
-* --foption <1>: chapter. (line 720)
-* --foption <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* --foption <1>: chapter. (line 716)
+* --foption <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ``: chapter. (line 28)
-* `` <1>: chapter. (line 720)
-* `` <2>: chapter. (line 1423)
+* `` <1>: chapter. (line 716)
+* `` <2>: chapter. (line 1415)
* a: chapter. (line 330)
-* a <1>: chapter. (line 526)
-* a <2>: chapter. (line 656)
-* a <3>: chapter. (line 1022)
-* a <4>: chapter. (line 1218)
-* a <5>: chapter. (line 1348)
-* a <6>: chapter. (line 1848)
-* a <7>: chapter. (line 2049)
-* a <8>: chapter. (line 2212)
-* a <9>: chapter. (line 2271)
-* after: chapter. (line 667)
-* after <1>: chapter. (line 1359)
-* after <2>: chapter. (line 2223)
+* a <1>: chapter. (line 523)
+* a <2>: chapter. (line 653)
+* a <3>: chapter. (line 1018)
+* a <4>: chapter. (line 1211)
+* a <5>: chapter. (line 1341)
+* a <6>: chapter. (line 1840)
+* a <7>: chapter. (line 2041)
+* a <8>: chapter. (line 2204)
+* a <9>: chapter. (line 2263)
+* after: chapter. (line 664)
+* after <1>: chapter. (line 1352)
+* after <2>: chapter. (line 2215)
* arg2: chapter. (line 449)
-* arg2 <1>: chapter. (line 1141)
-* arg2 <2>: chapter. (line 1971)
-* b: chapter. (line 527)
-* b <1>: chapter. (line 657)
-* b <2>: chapter. (line 1219)
-* b <3>: chapter. (line 1349)
-* b <4>: chapter. (line 2050)
-* b <5>: chapter. (line 2213)
+* arg2 <1>: chapter. (line 1137)
+* arg2 <2>: chapter. (line 1963)
+* b: chapter. (line 524)
+* b <1>: chapter. (line 654)
+* b <2>: chapter. (line 1212)
+* b <3>: chapter. (line 1342)
+* b <4>: chapter. (line 2042)
+* b <5>: chapter. (line 2205)
* bidule machin: chapter. (line 325)
-* bidule machin <1>: chapter. (line 1017)
-* bidule machin <2>: chapter. (line 1843)
+* bidule machin <1>: chapter. (line 1013)
+* bidule machin <2>: chapter. (line 1835)
* d--effn_name: chapter. (line 309)
-* d--effn_name <1>: chapter. (line 1001)
-* d--effn_name <2>: chapter. (line 1827)
+* d--effn_name <1>: chapter. (line 997)
+* d--effn_name <2>: chapter. (line 1819)
* d--efmac_name: chapter. (line 390)
-* d--efmac_name <1>: chapter. (line 1082)
-* d--efmac_name <2>: chapter. (line 1910)
+* d--efmac_name <1>: chapter. (line 1078)
+* d--efmac_name <2>: chapter. (line 1902)
* d--efmethod_name on c--lass: chapter. (line 417)
-* d--efmethod_name on c--lass <1>: chapter. (line 1109)
-* d--efmethod_name on c--lass <2>: chapter. (line 1937)
+* d--efmethod_name on c--lass <1>: chapter. (line 1105)
+* d--efmethod_name on c--lass <2>: chapter. (line 1929)
* d--efop_name on c--lass: chapter. (line 378)
* d--efop_name on c--lass <1>: chapter. (line 381)
-* d--efop_name on c--lass <2>: chapter. (line 1070)
-* d--efop_name on c--lass <3>: chapter. (line 1073)
-* d--efop_name on c--lass <4>: chapter. (line 1898)
-* d--efop_name on c--lass <5>: chapter. (line 1901)
+* d--efop_name on c--lass <2>: chapter. (line 1066)
+* d--efop_name on c--lass <3>: chapter. (line 1069)
+* d--efop_name on c--lass <4>: chapter. (line 1890)
+* d--efop_name on c--lass <5>: chapter. (line 1893)
* d--efspec_name: chapter. (line 393)
-* d--efspec_name <1>: chapter. (line 1085)
-* d--efspec_name <2>: chapter. (line 1913)
+* d--efspec_name <1>: chapter. (line 1081)
+* d--efspec_name <2>: chapter. (line 1905)
* d--eftypefn_name: chapter. (line 351)
* d--eftypefn_name <1>: chapter. (line 354)
-* d--eftypefn_name <2>: chapter. (line 1043)
-* d--eftypefn_name <3>: chapter. (line 1046)
-* d--eftypefn_name <4>: chapter. (line 1871)
-* d--eftypefn_name <5>: chapter. (line 1874)
+* d--eftypefn_name <2>: chapter. (line 1039)
+* d--eftypefn_name <3>: chapter. (line 1042)
+* d--eftypefn_name <4>: chapter. (line 1863)
+* d--eftypefn_name <5>: chapter. (line 1866)
* d--eftypefn_name2: chapter. (line 428)
-* d--eftypefn_name2 <1>: chapter. (line 1120)
-* d--eftypefn_name2 <2>: chapter. (line 1949)
+* d--eftypefn_name2 <1>: chapter. (line 1116)
+* d--eftypefn_name2 <2>: chapter. (line 1941)
* d--eftypefun_name: chapter. (line 405)
-* d--eftypefun_name <1>: chapter. (line 1097)
-* d--eftypefun_name <2>: chapter. (line 1925)
+* d--eftypefun_name <1>: chapter. (line 1093)
+* d--eftypefun_name <2>: chapter. (line 1917)
* d--eftypemethod_name on c--lass: chapter. (line 420)
-* d--eftypemethod_name on c--lass <1>: chapter. (line 1112)
-* d--eftypemethod_name on c--lass <2>: chapter. (line 1940)
+* d--eftypemethod_name on c--lass <1>: chapter. (line 1108)
+* d--eftypemethod_name on c--lass <2>: chapter. (line 1932)
* d--eftypeop_name on c--lass: chapter. (line 357)
* d--eftypeop_name on c--lass <1>: chapter. (line 360)
-* d--eftypeop_name on c--lass <2>: chapter. (line 1049)
-* d--eftypeop_name on c--lass <3>: chapter. (line 1052)
-* d--eftypeop_name on c--lass <4>: chapter. (line 1877)
-* d--eftypeop_name on c--lass <5>: chapter. (line 1880)
+* d--eftypeop_name on c--lass <2>: chapter. (line 1045)
+* d--eftypeop_name on c--lass <3>: chapter. (line 1048)
+* d--eftypeop_name on c--lass <4>: chapter. (line 1869)
+* d--eftypeop_name on c--lass <5>: chapter. (line 1872)
* d--eftypeop_name2 on c--lass2: chapter. (line 433)
* d--eftypeop_name2 on c--lass2 <1>: chapter. (line 438)
-* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1125)
-* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1130)
-* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1954)
-* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1959)
+* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1121)
+* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1126)
+* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1946)
+* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1951)
* d--efun_name: chapter. (line 387)
-* d--efun_name <1>: chapter. (line 1079)
-* d--efun_name <2>: chapter. (line 1907)
+* d--efun_name <1>: chapter. (line 1075)
+* d--efun_name <2>: chapter. (line 1899)
* de--ffn_name: chapter. (line 312)
-* de--ffn_name <1>: chapter. (line 1004)
-* de--ffn_name <2>: chapter. (line 1830)
+* de--ffn_name <1>: chapter. (line 1000)
+* de--ffn_name <2>: chapter. (line 1822)
* deffn: chapter. (line 333)
* deffn <1>: chapter. (line 335)
-* deffn <2>: chapter. (line 1025)
-* deffn <3>: chapter. (line 1027)
-* deffn <4>: chapter. (line 1852)
-* deffn <5>: chapter. (line 1854)
+* deffn <2>: chapter. (line 1021)
+* deffn <3>: chapter. (line 1023)
+* deffn <4>: chapter. (line 1844)
+* deffn <5>: chapter. (line 1846)
* deffnx: chapter. (line 331)
* deffnx <1>: chapter. (line 336)
-* deffnx <2>: chapter. (line 1023)
-* deffnx <3>: chapter. (line 1028)
-* deffnx <4>: chapter. (line 1849)
-* deffnx <5>: chapter. (line 1855)
-* f---aa: chapter. (line 2271)
+* deffnx <2>: chapter. (line 1019)
+* deffnx <3>: chapter. (line 1024)
+* deffnx <4>: chapter. (line 1841)
+* deffnx <5>: chapter. (line 1847)
+* f---aa: chapter. (line 2263)
f---aaa, See f---bbb.
-* f---bb, f---cc: chapter. (line 2271)
+* f---bb, f---cc: chapter. (line 2263)
f---ddd: See also f---ccc.
f---ddd: See also f---ccc.
-* f---ddd, f---eee, ffff: chapter. (line 2271)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2271)
+* f---ddd, f---eee, ffff: chapter. (line 2263)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2263)
* followed: chapter. (line 328)
-* followed <1>: chapter. (line 665)
-* followed <2>: chapter. (line 1020)
-* followed <3>: chapter. (line 1357)
-* followed <4>: chapter. (line 1846)
-* followed <5>: chapter. (line 2221)
+* followed <1>: chapter. (line 662)
+* followed <2>: chapter. (line 1016)
+* followed <3>: chapter. (line 1350)
+* followed <4>: chapter. (line 1838)
+* followed <5>: chapter. (line 2213)
* I: chapter. (line 316)
* I <1>: chapter. (line 338)
-* I <2>: chapter. (line 1008)
-* I <3>: chapter. (line 1030)
-* I <4>: chapter. (line 1834)
-* I <5>: chapter. (line 1857)
+* I <2>: chapter. (line 1004)
+* I <3>: chapter. (line 1026)
+* I <4>: chapter. (line 1826)
+* I <5>: chapter. (line 1849)
* id i ule: chapter. (line 322)
-* id i ule <1>: chapter. (line 1014)
-* id i ule <2>: chapter. (line 1840)
+* id i ule <1>: chapter. (line 1010)
+* id i ule <2>: chapter. (line 1832)
* id ule: chapter. (line 321)
-* id ule <1>: chapter. (line 1013)
-* id ule <2>: chapter. (line 1839)
-* INVALID: chapter. (line 669)
-* INVALID <1>: chapter. (line 1361)
-* INVALID <2>: chapter. (line 2225)
+* id ule <1>: chapter. (line 1009)
+* id ule <2>: chapter. (line 1831)
+* INVALID: chapter. (line 666)
+* INVALID <1>: chapter. (line 1354)
+* INVALID <2>: chapter. (line 2217)
* log trap: chapter. (line 318)
-* log trap <1>: chapter. (line 1010)
-* log trap <2>: chapter. (line 1836)
+* log trap <1>: chapter. (line 1006)
+* log trap <2>: chapter. (line 1828)
* log trap1: chapter. (line 319)
-* log trap1 <1>: chapter. (line 1011)
-* log trap1 <2>: chapter. (line 1837)
+* log trap1 <1>: chapter. (line 1007)
+* log trap1 <2>: chapter. (line 1829)
* log trap2: chapter. (line 320)
-* log trap2 <1>: chapter. (line 1012)
-* log trap2 <2>: chapter. (line 1838)
+* log trap2 <1>: chapter. (line 1008)
+* log trap2 <2>: chapter. (line 1830)
* machin: chapter. (line 324)
* machin <1>: chapter. (line 326)
-* machin <2>: chapter. (line 661)
-* machin <3>: chapter. (line 662)
-* machin <4>: chapter. (line 663)
-* machin <5>: chapter. (line 664)
-* machin <6>: chapter. (line 1016)
-* machin <7>: chapter. (line 1018)
-* machin <8>: chapter. (line 1353)
-* machin <9>: chapter. (line 1354)
-* machin <10>: chapter. (line 1355)
-* machin <11>: chapter. (line 1356)
-* machin <12>: chapter. (line 1842)
-* machin <13>: chapter. (line 1844)
-* machin <14>: chapter. (line 2217)
-* machin <15>: chapter. (line 2218)
-* machin <16>: chapter. (line 2219)
-* machin <17>: chapter. (line 2220)
+* machin <2>: chapter. (line 658)
+* machin <3>: chapter. (line 659)
+* machin <4>: chapter. (line 660)
+* machin <5>: chapter. (line 661)
+* machin <6>: chapter. (line 1012)
+* machin <7>: chapter. (line 1014)
+* machin <8>: chapter. (line 1346)
+* machin <9>: chapter. (line 1347)
+* machin <10>: chapter. (line 1348)
+* machin <11>: chapter. (line 1349)
+* machin <12>: chapter. (line 1834)
+* machin <13>: chapter. (line 1836)
+* machin <14>: chapter. (line 2209)
+* machin <15>: chapter. (line 2210)
+* machin <16>: chapter. (line 2211)
+* machin <17>: chapter. (line 2212)
* n--ame: chapter. (line 345)
* n--ame <1>: chapter. (line 348)
-* n--ame <2>: chapter. (line 1037)
-* n--ame <3>: chapter. (line 1040)
-* n--ame <4>: chapter. (line 1865)
-* n--ame <5>: chapter. (line 1868)
+* n--ame <2>: chapter. (line 1033)
+* n--ame <3>: chapter. (line 1036)
+* n--ame <4>: chapter. (line 1857)
+* n--ame <5>: chapter. (line 1860)
* name2: chapter. (line 423)
-* name2 <1>: chapter. (line 1115)
-* name2 <2>: chapter. (line 1944)
-* t--ruc: chapter. (line 2271)
-* T--ruc: chapter. (line 2271)
+* name2 <1>: chapter. (line 1111)
+* name2 <2>: chapter. (line 1936)
+* t--ruc: chapter. (line 2263)
+* T--ruc: chapter. (line 2263)
* truc: chapter. (line 317)
* truc <1>: chapter. (line 339)
-* truc <2>: chapter. (line 1009)
-* truc <3>: chapter. (line 1031)
-* truc <4>: chapter. (line 1835)
-* truc <5>: chapter. (line 1858)
-* xxx, zzz: chapter. (line 2271)
+* truc <2>: chapter. (line 1005)
+* truc <3>: chapter. (line 1027)
+* truc <4>: chapter. (line 1827)
+* truc <5>: chapter. (line 1850)
+* xxx, zzz: chapter. (line 2263)
vr
@@ -2587,8 +2579,8 @@ aaa
* Menu:
* d--eftp_name: chapter. (line 384)
-* d--eftp_name <1>: chapter. (line 1076)
-* d--eftp_name <2>: chapter. (line 1904)
+* d--eftp_name <1>: chapter. (line 1072)
+* d--eftp_name <2>: chapter. (line 1896)
(8)
@@ -2632,291 +2624,291 @@ chapter 2
* Menu:
* -option: chapter. (line 28)
-* -option <1>: chapter. (line 720)
-* -option <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* -option <1>: chapter. (line 716)
+* -option <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ": chapter. (line 28)
-* " <1>: chapter. (line 720)
-* " <2>: chapter. (line 1423)
-* a: chapter. (line 2271)
-* aaa, bbb: chapter. (line 2271)
-* a--a: chapter. (line 2271)
-* a--asis: chapter. (line 522)
-* a--asis <1>: chapter. (line 1214)
-* a--asis <2>: chapter. (line 2045)
+* " <1>: chapter. (line 716)
+* " <2>: chapter. (line 1415)
+* a: chapter. (line 2263)
+* aaa, bbb: chapter. (line 2263)
+* a--a: chapter. (line 2263)
+* a--asis: chapter. (line 519)
+* a--asis <1>: chapter. (line 1207)
+* a--asis <2>: chapter. (line 2037)
aaa, See bbb.
-* b: chapter. (line 523)
-* b <1>: chapter. (line 1215)
-* b <2>: chapter. (line 2046)
-* b--b, c--c: chapter. (line 2271)
-* counting entry: chapter. (line 2613)
-* d--dd, e--ee, f--ff: chapter. (line 2271)
+* b: chapter. (line 520)
+* b <1>: chapter. (line 1208)
+* b <2>: chapter. (line 2038)
+* b--b, c--c: chapter. (line 2263)
+* counting entry: chapter. (line 2605)
+* d--dd, e--ee, f--ff: chapter. (line 2263)
* d--efcv_name: chapter. (line 366)
* d--efcv_name <1>: chapter. (line 369)
-* d--efcv_name <2>: chapter. (line 1058)
-* d--efcv_name <3>: chapter. (line 1061)
-* d--efcv_name <4>: chapter. (line 1886)
-* d--efcv_name <5>: chapter. (line 1889)
+* d--efcv_name <2>: chapter. (line 1054)
+* d--efcv_name <3>: chapter. (line 1057)
+* d--efcv_name <4>: chapter. (line 1878)
+* d--efcv_name <5>: chapter. (line 1881)
* d--efivar_name of c--lass: chapter. (line 411)
-* d--efivar_name of c--lass <1>: chapter. (line 1103)
-* d--efivar_name of c--lass <2>: chapter. (line 1931)
+* d--efivar_name of c--lass <1>: chapter. (line 1099)
+* d--efivar_name of c--lass <2>: chapter. (line 1923)
* d--efopt_name: chapter. (line 402)
-* d--efopt_name <1>: chapter. (line 1094)
-* d--efopt_name <2>: chapter. (line 1922)
+* d--efopt_name <1>: chapter. (line 1090)
+* d--efopt_name <2>: chapter. (line 1914)
* d--eftypecv_name of c--lass: chapter. (line 372)
* d--eftypecv_name of c--lass <1>: chapter. (line 375)
-* d--eftypecv_name of c--lass <2>: chapter. (line 1064)
-* d--eftypecv_name of c--lass <3>: chapter. (line 1067)
-* d--eftypecv_name of c--lass <4>: chapter. (line 1892)
-* d--eftypecv_name of c--lass <5>: chapter. (line 1895)
+* d--eftypecv_name of c--lass <2>: chapter. (line 1060)
+* d--eftypecv_name of c--lass <3>: chapter. (line 1063)
+* d--eftypecv_name of c--lass <4>: chapter. (line 1884)
+* d--eftypecv_name of c--lass <5>: chapter. (line 1887)
* d--eftypecv_name2 of c--lass2: chapter. (line 443)
* d--eftypecv_name2 of c--lass2 <1>: chapter. (line 446)
-* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1135)
-* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1138)
-* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1964)
-* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1967)
+* d--eftypecv_name2 of c--lass2 <2>: chapter. (line 1131)
+* d--eftypecv_name2 of c--lass2 <3>: chapter. (line 1134)
+* d--eftypecv_name2 of c--lass2 <4>: chapter. (line 1956)
+* d--eftypecv_name2 of c--lass2 <5>: chapter. (line 1959)
* d--eftypeivar_name of c--lass: chapter. (line 414)
-* d--eftypeivar_name of c--lass <1>: chapter. (line 1106)
-* d--eftypeivar_name of c--lass <2>: chapter. (line 1934)
+* d--eftypeivar_name of c--lass <1>: chapter. (line 1102)
+* d--eftypeivar_name of c--lass <2>: chapter. (line 1926)
* d--eftypevar_name: chapter. (line 408)
-* d--eftypevar_name <1>: chapter. (line 1100)
-* d--eftypevar_name <2>: chapter. (line 1928)
+* d--eftypevar_name <1>: chapter. (line 1096)
+* d--eftypevar_name <2>: chapter. (line 1920)
* d--eftypevr_name: chapter. (line 363)
-* d--eftypevr_name <1>: chapter. (line 1055)
-* d--eftypevr_name <2>: chapter. (line 1883)
+* d--eftypevr_name <1>: chapter. (line 1051)
+* d--eftypevr_name <2>: chapter. (line 1875)
* d--efvar_name: chapter. (line 396)
* d--efvar_name <1>: chapter. (line 399)
-* d--efvar_name <2>: chapter. (line 1088)
-* d--efvar_name <3>: chapter. (line 1091)
-* d--efvar_name <4>: chapter. (line 1916)
-* d--efvar_name <5>: chapter. (line 1919)
+* d--efvar_name <2>: chapter. (line 1084)
+* d--efvar_name <3>: chapter. (line 1087)
+* d--efvar_name <4>: chapter. (line 1908)
+* d--efvar_name <5>: chapter. (line 1911)
* d--efvr_name: chapter. (line 342)
-* d--efvr_name <1>: chapter. (line 1034)
-* d--efvr_name <2>: chapter. (line 1862)
+* d--efvr_name <1>: chapter. (line 1030)
+* d--efvr_name <2>: chapter. (line 1854)
ddd: See also ccc.
ddd: See also ccc.
-* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2271)
-* index entry between item and itemx: chapter. (line 527)
-* index entry between item and itemx <1>: chapter. (line 657)
-* index entry between item and itemx <2>: chapter. (line 1219)
-* index entry between item and itemx <3>: chapter. (line 1349)
-* index entry between item and itemx <4>: chapter. (line 2050)
-* index entry between item and itemx <5>: chapter. (line 2213)
-* index entry in footnote: chapter. (line 2608)
+* g--gg, h--hh jjj, k--kk, l--ll: chapter. (line 2263)
+* index entry between item and itemx: chapter. (line 524)
+* index entry between item and itemx <1>: chapter. (line 654)
+* index entry between item and itemx <2>: chapter. (line 1212)
+* index entry between item and itemx <3>: chapter. (line 1342)
+* index entry between item and itemx <4>: chapter. (line 2042)
+* index entry between item and itemx <5>: chapter. (line 2205)
+* index entry in footnote: chapter. (line 2600)
* index entry within deffn: chapter. (line 317)
-* index entry within deffn <1>: chapter. (line 1009)
-* index entry within deffn <2>: chapter. (line 1835)
+* index entry within deffn <1>: chapter. (line 1005)
+* index entry within deffn <2>: chapter. (line 1827)
* index entry within itemize: chapter. (line 228)
-* index entry within itemize <1>: chapter. (line 920)
-* index entry within itemize <2>: chapter. (line 1746)
+* index entry within itemize <1>: chapter. (line 916)
+* index entry within itemize <2>: chapter. (line 1738)
* index entry within multitable: chapter. (line 250)
-* index entry within multitable <1>: chapter. (line 942)
-* index entry within multitable <2>: chapter. (line 1769)
-* t-ruc: chapter. (line 2271)
-* T-ruc: chapter. (line 2271)
+* index entry within multitable <1>: chapter. (line 938)
+* index entry within multitable <2>: chapter. (line 1761)
+* t-ruc: chapter. (line 2263)
+* T-ruc: chapter. (line 2263)
* vtable i--tem code kbdinputstyle: chapter. (line 152)
-* vtable i--tem code kbdinputstyle <1>: chapter. (line 844)
-* vtable i--tem code kbdinputstyle <2>: chapter. (line 1669)
+* vtable i--tem code kbdinputstyle <1>: chapter. (line 840)
+* vtable i--tem code kbdinputstyle <2>: chapter. (line 1661)
* vtable i--tem default kbdinputstyle: chapter. (line 147)
-* vtable i--tem default kbdinputstyle <1>: chapter. (line 839)
-* vtable i--tem default kbdinputstyle <2>: chapter. (line 1664)
+* vtable i--tem default kbdinputstyle <1>: chapter. (line 835)
+* vtable i--tem default kbdinputstyle <2>: chapter. (line 1656)
* vtable i--tem distinct kbdinputstyle: chapter. (line 162)
-* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 854)
-* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1679)
+* vtable i--tem distinct kbdinputstyle <1>: chapter. (line 850)
+* vtable i--tem distinct kbdinputstyle <2>: chapter. (line 1671)
* vtable i--tem example kbdinputstyle: chapter. (line 157)
-* vtable i--tem example kbdinputstyle <1>: chapter. (line 849)
-* vtable i--tem example kbdinputstyle <2>: chapter. (line 1674)
+* vtable i--tem example kbdinputstyle <1>: chapter. (line 845)
+* vtable i--tem example kbdinputstyle <2>: chapter. (line 1666)
* vtable i--tem in example code kbdinputstyle: chapter. (line 154)
-* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 846)
-* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1671)
+* vtable i--tem in example code kbdinputstyle <1>: chapter. (line 842)
+* vtable i--tem in example code kbdinputstyle <2>: chapter. (line 1663)
* vtable i--tem in example default kbdinputstyle: chapter. (line 149)
* vtable i--tem in example default kbdinputstyle <1>: chapter.
- (line 841)
+ (line 837)
* vtable i--tem in example default kbdinputstyle <2>: chapter.
- (line 1666)
+ (line 1658)
* vtable i--tem in example distinct kbdinputstyle: chapter. (line 164)
* vtable i--tem in example distinct kbdinputstyle <1>: chapter.
- (line 856)
+ (line 852)
* vtable i--tem in example distinct kbdinputstyle <2>: chapter.
- (line 1681)
+ (line 1673)
* vtable i--tem in example example kbdinputstyle: chapter. (line 159)
* vtable i--tem in example example kbdinputstyle <1>: chapter.
- (line 851)
+ (line 847)
* vtable i--tem in example example kbdinputstyle <2>: chapter.
- (line 1676)
+ (line 1668)
* Menu:
* --foption: chapter. (line 28)
-* --foption <1>: chapter. (line 720)
-* --foption <2>: chapter. (line 1423)
-* ?: chapter. (line 2271)
-* .: chapter. (line 2271)
+* --foption <1>: chapter. (line 716)
+* --foption <2>: chapter. (line 1415)
+* ?: chapter. (line 2263)
+* .: chapter. (line 2263)
* ``: chapter. (line 28)
-* `` <1>: chapter. (line 720)
-* `` <2>: chapter. (line 1423)
+* `` <1>: chapter. (line 716)
+* `` <2>: chapter. (line 1415)
* a: chapter. (line 330)
-* a <1>: chapter. (line 526)
-* a <2>: chapter. (line 656)
-* a <3>: chapter. (line 1022)
-* a <4>: chapter. (line 1218)
-* a <5>: chapter. (line 1348)
-* a <6>: chapter. (line 1848)
-* a <7>: chapter. (line 2049)
-* a <8>: chapter. (line 2212)
-* a <9>: chapter. (line 2271)
-* after: chapter. (line 667)
-* after <1>: chapter. (line 1359)
-* after <2>: chapter. (line 2223)
+* a <1>: chapter. (line 523)
+* a <2>: chapter. (line 653)
+* a <3>: chapter. (line 1018)
+* a <4>: chapter. (line 1211)
+* a <5>: chapter. (line 1341)
+* a <6>: chapter. (line 1840)
+* a <7>: chapter. (line 2041)
+* a <8>: chapter. (line 2204)
+* a <9>: chapter. (line 2263)
+* after: chapter. (line 664)
+* after <1>: chapter. (line 1352)
+* after <2>: chapter. (line 2215)
* arg2: chapter. (line 449)
-* arg2 <1>: chapter. (line 1141)
-* arg2 <2>: chapter. (line 1971)
-* b: chapter. (line 527)
-* b <1>: chapter. (line 657)
-* b <2>: chapter. (line 1219)
-* b <3>: chapter. (line 1349)
-* b <4>: chapter. (line 2050)
-* b <5>: chapter. (line 2213)
+* arg2 <1>: chapter. (line 1137)
+* arg2 <2>: chapter. (line 1963)
+* b: chapter. (line 524)
+* b <1>: chapter. (line 654)
+* b <2>: chapter. (line 1212)
+* b <3>: chapter. (line 1342)
+* b <4>: chapter. (line 2042)
+* b <5>: chapter. (line 2205)
* bidule machin: chapter. (line 325)
-* bidule machin <1>: chapter. (line 1017)
-* bidule machin <2>: chapter. (line 1843)
+* bidule machin <1>: chapter. (line 1013)
+* bidule machin <2>: chapter. (line 1835)
* d--effn_name: chapter. (line 309)
-* d--effn_name <1>: chapter. (line 1001)
-* d--effn_name <2>: chapter. (line 1827)
+* d--effn_name <1>: chapter. (line 997)
+* d--effn_name <2>: chapter. (line 1819)
* d--efmac_name: chapter. (line 390)
-* d--efmac_name <1>: chapter. (line 1082)
-* d--efmac_name <2>: chapter. (line 1910)
+* d--efmac_name <1>: chapter. (line 1078)
+* d--efmac_name <2>: chapter. (line 1902)
* d--efmethod_name on c--lass: chapter. (line 417)
-* d--efmethod_name on c--lass <1>: chapter. (line 1109)
-* d--efmethod_name on c--lass <2>: chapter. (line 1937)
+* d--efmethod_name on c--lass <1>: chapter. (line 1105)
+* d--efmethod_name on c--lass <2>: chapter. (line 1929)
* d--efop_name on c--lass: chapter. (line 378)
* d--efop_name on c--lass <1>: chapter. (line 381)
-* d--efop_name on c--lass <2>: chapter. (line 1070)
-* d--efop_name on c--lass <3>: chapter. (line 1073)
-* d--efop_name on c--lass <4>: chapter. (line 1898)
-* d--efop_name on c--lass <5>: chapter. (line 1901)
+* d--efop_name on c--lass <2>: chapter. (line 1066)
+* d--efop_name on c--lass <3>: chapter. (line 1069)
+* d--efop_name on c--lass <4>: chapter. (line 1890)
+* d--efop_name on c--lass <5>: chapter. (line 1893)
* d--efspec_name: chapter. (line 393)
-* d--efspec_name <1>: chapter. (line 1085)
-* d--efspec_name <2>: chapter. (line 1913)
+* d--efspec_name <1>: chapter. (line 1081)
+* d--efspec_name <2>: chapter. (line 1905)
* d--eftypefn_name: chapter. (line 351)
* d--eftypefn_name <1>: chapter. (line 354)
-* d--eftypefn_name <2>: chapter. (line 1043)
-* d--eftypefn_name <3>: chapter. (line 1046)
-* d--eftypefn_name <4>: chapter. (line 1871)
-* d--eftypefn_name <5>: chapter. (line 1874)
+* d--eftypefn_name <2>: chapter. (line 1039)
+* d--eftypefn_name <3>: chapter. (line 1042)
+* d--eftypefn_name <4>: chapter. (line 1863)
+* d--eftypefn_name <5>: chapter. (line 1866)
* d--eftypefn_name2: chapter. (line 428)
-* d--eftypefn_name2 <1>: chapter. (line 1120)
-* d--eftypefn_name2 <2>: chapter. (line 1949)
+* d--eftypefn_name2 <1>: chapter. (line 1116)
+* d--eftypefn_name2 <2>: chapter. (line 1941)
* d--eftypefun_name: chapter. (line 405)
-* d--eftypefun_name <1>: chapter. (line 1097)
-* d--eftypefun_name <2>: chapter. (line 1925)
+* d--eftypefun_name <1>: chapter. (line 1093)
+* d--eftypefun_name <2>: chapter. (line 1917)
* d--eftypemethod_name on c--lass: chapter. (line 420)
-* d--eftypemethod_name on c--lass <1>: chapter. (line 1112)
-* d--eftypemethod_name on c--lass <2>: chapter. (line 1940)
+* d--eftypemethod_name on c--lass <1>: chapter. (line 1108)
+* d--eftypemethod_name on c--lass <2>: chapter. (line 1932)
* d--eftypeop_name on c--lass: chapter. (line 357)
* d--eftypeop_name on c--lass <1>: chapter. (line 360)
-* d--eftypeop_name on c--lass <2>: chapter. (line 1049)
-* d--eftypeop_name on c--lass <3>: chapter. (line 1052)
-* d--eftypeop_name on c--lass <4>: chapter. (line 1877)
-* d--eftypeop_name on c--lass <5>: chapter. (line 1880)
+* d--eftypeop_name on c--lass <2>: chapter. (line 1045)
+* d--eftypeop_name on c--lass <3>: chapter. (line 1048)
+* d--eftypeop_name on c--lass <4>: chapter. (line 1869)
+* d--eftypeop_name on c--lass <5>: chapter. (line 1872)
* d--eftypeop_name2 on c--lass2: chapter. (line 433)
* d--eftypeop_name2 on c--lass2 <1>: chapter. (line 438)
-* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1125)
-* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1130)
-* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1954)
-* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1959)
+* d--eftypeop_name2 on c--lass2 <2>: chapter. (line 1121)
+* d--eftypeop_name2 on c--lass2 <3>: chapter. (line 1126)
+* d--eftypeop_name2 on c--lass2 <4>: chapter. (line 1946)
+* d--eftypeop_name2 on c--lass2 <5>: chapter. (line 1951)
* d--efun_name: chapter. (line 387)
-* d--efun_name <1>: chapter. (line 1079)
-* d--efun_name <2>: chapter. (line 1907)
+* d--efun_name <1>: chapter. (line 1075)
+* d--efun_name <2>: chapter. (line 1899)
* de--ffn_name: chapter. (line 312)
-* de--ffn_name <1>: chapter. (line 1004)
-* de--ffn_name <2>: chapter. (line 1830)
+* de--ffn_name <1>: chapter. (line 1000)
+* de--ffn_name <2>: chapter. (line 1822)
* deffn: chapter. (line 333)
* deffn <1>: chapter. (line 335)
-* deffn <2>: chapter. (line 1025)
-* deffn <3>: chapter. (line 1027)
-* deffn <4>: chapter. (line 1852)
-* deffn <5>: chapter. (line 1854)
+* deffn <2>: chapter. (line 1021)
+* deffn <3>: chapter. (line 1023)
+* deffn <4>: chapter. (line 1844)
+* deffn <5>: chapter. (line 1846)
* deffnx: chapter. (line 331)
* deffnx <1>: chapter. (line 336)
-* deffnx <2>: chapter. (line 1023)
-* deffnx <3>: chapter. (line 1028)
-* deffnx <4>: chapter. (line 1849)
-* deffnx <5>: chapter. (line 1855)
-* f---aa: chapter. (line 2271)
+* deffnx <2>: chapter. (line 1019)
+* deffnx <3>: chapter. (line 1024)
+* deffnx <4>: chapter. (line 1841)
+* deffnx <5>: chapter. (line 1847)
+* f---aa: chapter. (line 2263)
f---aaa, See f---bbb.
-* f---bb, f---cc: chapter. (line 2271)
+* f---bb, f---cc: chapter. (line 2263)
f---ddd: See also f---ccc.
f---ddd: See also f---ccc.
-* f---ddd, f---eee, ffff: chapter. (line 2271)
-* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2271)
+* f---ddd, f---eee, ffff: chapter. (line 2263)
+* f---ggg, f---hhh fjjj, f---kkk, f---lll: chapter. (line 2263)
* followed: chapter. (line 328)
-* followed <1>: chapter. (line 665)
-* followed <2>: chapter. (line 1020)
-* followed <3>: chapter. (line 1357)
-* followed <4>: chapter. (line 1846)
-* followed <5>: chapter. (line 2221)
+* followed <1>: chapter. (line 662)
+* followed <2>: chapter. (line 1016)
+* followed <3>: chapter. (line 1350)
+* followed <4>: chapter. (line 1838)
+* followed <5>: chapter. (line 2213)
* I: chapter. (line 316)
* I <1>: chapter. (line 338)
-* I <2>: chapter. (line 1008)
-* I <3>: chapter. (line 1030)
-* I <4>: chapter. (line 1834)
-* I <5>: chapter. (line 1857)
+* I <2>: chapter. (line 1004)
+* I <3>: chapter. (line 1026)
+* I <4>: chapter. (line 1826)
+* I <5>: chapter. (line 1849)
* id i ule: chapter. (line 322)
-* id i ule <1>: chapter. (line 1014)
-* id i ule <2>: chapter. (line 1840)
+* id i ule <1>: chapter. (line 1010)
+* id i ule <2>: chapter. (line 1832)
* id ule: chapter. (line 321)
-* id ule <1>: chapter. (line 1013)
-* id ule <2>: chapter. (line 1839)
-* INVALID: chapter. (line 669)
-* INVALID <1>: chapter. (line 1361)
-* INVALID <2>: chapter. (line 2225)
+* id ule <1>: chapter. (line 1009)
+* id ule <2>: chapter. (line 1831)
+* INVALID: chapter. (line 666)
+* INVALID <1>: chapter. (line 1354)
+* INVALID <2>: chapter. (line 2217)
* log trap: chapter. (line 318)
-* log trap <1>: chapter. (line 1010)
-* log trap <2>: chapter. (line 1836)
+* log trap <1>: chapter. (line 1006)
+* log trap <2>: chapter. (line 1828)
* log trap1: chapter. (line 319)
-* log trap1 <1>: chapter. (line 1011)
-* log trap1 <2>: chapter. (line 1837)
+* log trap1 <1>: chapter. (line 1007)
+* log trap1 <2>: chapter. (line 1829)
* log trap2: chapter. (line 320)
-* log trap2 <1>: chapter. (line 1012)
-* log trap2 <2>: chapter. (line 1838)
+* log trap2 <1>: chapter. (line 1008)
+* log trap2 <2>: chapter. (line 1830)
* machin: chapter. (line 324)
* machin <1>: chapter. (line 326)
-* machin <2>: chapter. (line 661)
-* machin <3>: chapter. (line 662)
-* machin <4>: chapter. (line 663)
-* machin <5>: chapter. (line 664)
-* machin <6>: chapter. (line 1016)
-* machin <7>: chapter. (line 1018)
-* machin <8>: chapter. (line 1353)
-* machin <9>: chapter. (line 1354)
-* machin <10>: chapter. (line 1355)
-* machin <11>: chapter. (line 1356)
-* machin <12>: chapter. (line 1842)
-* machin <13>: chapter. (line 1844)
-* machin <14>: chapter. (line 2217)
-* machin <15>: chapter. (line 2218)
-* machin <16>: chapter. (line 2219)
-* machin <17>: chapter. (line 2220)
+* machin <2>: chapter. (line 658)
+* machin <3>: chapter. (line 659)
+* machin <4>: chapter. (line 660)
+* machin <5>: chapter. (line 661)
+* machin <6>: chapter. (line 1012)
+* machin <7>: chapter. (line 1014)
+* machin <8>: chapter. (line 1346)
+* machin <9>: chapter. (line 1347)
+* machin <10>: chapter. (line 1348)
+* machin <11>: chapter. (line 1349)
+* machin <12>: chapter. (line 1834)
+* machin <13>: chapter. (line 1836)
+* machin <14>: chapter. (line 2209)
+* machin <15>: chapter. (line 2210)
+* machin <16>: chapter. (line 2211)
+* machin <17>: chapter. (line 2212)
* n--ame: chapter. (line 345)
* n--ame <1>: chapter. (line 348)
-* n--ame <2>: chapter. (line 1037)
-* n--ame <3>: chapter. (line 1040)
-* n--ame <4>: chapter. (line 1865)
-* n--ame <5>: chapter. (line 1868)
+* n--ame <2>: chapter. (line 1033)
+* n--ame <3>: chapter. (line 1036)
+* n--ame <4>: chapter. (line 1857)
+* n--ame <5>: chapter. (line 1860)
* name2: chapter. (line 423)
-* name2 <1>: chapter. (line 1115)
-* name2 <2>: chapter. (line 1944)
-* t--ruc: chapter. (line 2271)
-* T--ruc: chapter. (line 2271)
+* name2 <1>: chapter. (line 1111)
+* name2 <2>: chapter. (line 1936)
+* t--ruc: chapter. (line 2263)
+* T--ruc: chapter. (line 2263)
* truc: chapter. (line 317)
* truc <1>: chapter. (line 339)
-* truc <2>: chapter. (line 1009)
-* truc <3>: chapter. (line 1031)
-* truc <4>: chapter. (line 1835)
-* truc <5>: chapter. (line 1858)
-* xxx, zzz: chapter. (line 2271)
+* truc <2>: chapter. (line 1005)
+* truc <3>: chapter. (line 1027)
+* truc <4>: chapter. (line 1827)
+* truc <5>: chapter. (line 1850)
+* xxx, zzz: chapter. (line 2263)
Top section
1 chapter
- master updated (3ee7ac39a8 -> 5ec100b947), Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29
- [no subject],
Patrice Dumas <=
- [no subject], Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29
- [no subject], Patrice Dumas, 2024/09/29