summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordas <das@noemail.net>2004-11-12 09:01:21 (GMT)
committerdas <das@noemail.net>2004-11-12 09:01:21 (GMT)
commit2b3a556a45acf32e18dedf451539e53ae9d6ab3d (patch)
tree1c6463dd66e2fd05e6f2a96516a458e646c8d56c /tools
parentd2b33cb459b337690f87377d311f8cd0889a8379 (diff)
downloadtcl-2b3a556a45acf32e18dedf451539e53ae9d6ab3d.zip
tcl-2b3a556a45acf32e18dedf451539e53ae9d6ab3d.tar.gz
tcl-2b3a556a45acf32e18dedf451539e53ae9d6ab3d.tar.bz2
* doc/CrtChannel.3:
* doc/Interp.3: * doc/Limit.3: * doc/binary.n: * doc/dict.n: * doc/tm.n: * doc/upvar.n: fixed *roff errors uncovered by running 'make html'. * tools/tcltk-man2html.tcl: added faked support for bullet point lists, i.e. *nroff ".IP \(bu" syntax. FossilOrigin-Name: 70b61d2ad8f5b3086fdda0fea0faac91b49d3671
Diffstat (limited to 'tools')
-rwxr-xr-xtools/tcltk-man2html.tcl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/tcltk-man2html.tcl b/tools/tcltk-man2html.tcl
index 7190b1d..b9c8280 100755
--- a/tools/tcltk-man2html.tcl
+++ b/tools/tcltk-man2html.tcl
@@ -230,6 +230,7 @@ proc process-text {text} {
{\(+-} {&#177;} \
{\fP} {\fR} \
{\.} . \
+ {\(bu} {&#8226;} \
] $text]
regsub -all {\\o'o\^'} $text {\&ocirc;} text; # o-circumflex in re_syntax.n
regsub -all {\\-\\\|\\-} $text -- text; # two hyphens
@@ -558,6 +559,8 @@ proc output-IP-list {context code rest} {
if {[string equal $manual(section) "ARGUMENTS"] || \
[regexp {^\[\d+\]$} $rest]} {
man-puts "$para<DT>$rest<DD>"
+ } elseif {[string equal {&#8226;} $rest]} {
+ man-puts "$para<DT><DD>$rest&nbsp;"
} else {
man-puts "$para<DT>[long-toc $rest]<DD>"
}