summaryrefslogtreecommitdiffstats
path: root/tools/tcltk-man2html-utils.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-03 09:09:25 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-03 09:09:25 (GMT)
commitb1517df3ff0aa3be2bb952a719ffbbc27d69e226 (patch)
tree775035ad317d0c0fe0fb8cbf923362a7eef0f40a /tools/tcltk-man2html-utils.tcl
parenta2e1bdf3b541497d607533fa83d88daebca4737e (diff)
downloadtcl-b1517df3ff0aa3be2bb952a719ffbbc27d69e226.zip
tcl-b1517df3ff0aa3be2bb952a719ffbbc27d69e226.tar.gz
tcl-b1517df3ff0aa3be2bb952a719ffbbc27d69e226.tar.bz2
Simplify some \\u???? escape sequences to \\x??
Diffstat (limited to 'tools/tcltk-man2html-utils.tcl')
-rw-r--r--tools/tcltk-man2html-utils.tcl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/tcltk-man2html-utils.tcl b/tools/tcltk-man2html-utils.tcl
index 94440d5..2d82bb1 100644
--- a/tools/tcltk-man2html-utils.tcl
+++ b/tools/tcltk-man2html-utils.tcl
@@ -130,8 +130,8 @@ proc htmlize-text {text {charmap {}}} {
\" {&quot;} \
{<} {&lt;} \
{>} {&gt;} \
- \u201c "&ldquo;" \
- \u201d "&rdquo;"
+ \u201C "&ldquo;" \
+ \u201D "&rdquo;"
return [string map $charmap $text]
}
@@ -1303,8 +1303,8 @@ proc make-manpage-section {outputDir sectionDescriptor} {
global manual overall_title tcltkdesc verbose
global excluded_pages forced_index_pages process_first_patterns
- set LQ \u201c
- set RQ \u201d
+ set LQ \u201C
+ set RQ \u201D
lassign $sectionDescriptor \
manual(wing-glob) \