diff options
author | hobbs <hobbs@noemail.net> | 1999-12-22 23:48:55 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 1999-12-22 23:48:55 (GMT) |
commit | 2531bdef09ca0c1ec3eed82decd2d0b32ae36701 (patch) | |
tree | 2391b03e94f8a9d4eff1fb439c3ffa7545496e9b /tools | |
parent | 5d1bc838ad1406a5b4bd1952d94ac37ddd55afc4 (diff) | |
download | tcl-2531bdef09ca0c1ec3eed82decd2d0b32ae36701.zip tcl-2531bdef09ca0c1ec3eed82decd2d0b32ae36701.tar.gz tcl-2531bdef09ca0c1ec3eed82decd2d0b32ae36701.tar.bz2 |
fixed backslashing of }core-8-3-b1
FossilOrigin-Name: fd8a11d1c62c3b30ac3b35ce666d100084e6f19a
Diffstat (limited to 'tools')
-rw-r--r-- | tools/man2help2.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/man2help2.tcl b/tools/man2help2.tcl index df04a6c..0de9093 100644 --- a/tools/man2help2.tcl +++ b/tools/man2help2.tcl @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: man2help2.tcl,v 1.4 1999/12/21 23:59:29 hobbs Exp $ +# RCS: @(#) $Id: man2help2.tcl,v 1.5 1999/12/22 23:48:56 hobbs Exp $ # # Global variables used by these scripts: @@ -147,7 +147,7 @@ proc text {string} { set string [string map [list \ "\\" "\\\\" \ "\{" "\\\{" \ - "\}" "\}" \ + "\}" "\\\}" \ "\t" {\tab } \ '' \" \ `` \" \ |