diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | doc/Encoding.3 | 9 | ||||
-rw-r--r-- | unix/mkLinks.tcl | 2 |
3 files changed, 9 insertions, 8 deletions
@@ -1,5 +1,11 @@ 1999-07-29 <redman@scriptics.com> + * unix/mkLinks.tcl: Applied patch to avoid linking pack.n to + pack-old.n. Patch from Don Porter. [Bug: 2469] + + * doc/Encoding.n: Applied patch to fix typo in .SH NAME line. + Patch from Don Porter. [Bug: 2451] + * win/tclWinSock.c: Free Win32 Event handles when destroying the socket helper thread. diff --git a/doc/Encoding.3 b/doc/Encoding.3 index 4628b56..020edf7 100644 --- a/doc/Encoding.3 +++ b/doc/Encoding.3 @@ -4,18 +4,13 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Encoding.3,v 1.4 1999/05/06 19:14:39 stanton Exp $ +'\" RCS: @(#) $Id: Encoding.3,v 1.5 1999/07/29 23:17:49 redman Exp $ '\" .so man.macros .TH Tcl_GetEncoding 3 "8.1" Tcl "Tcl Library Procedures" .BS .SH NAME -Tcl_GetEncoding, Tcl_FreeEncoding, Tcl_ExternalToUtfDString, -Tcl_ExternalToUtf, Tcl_UtfToExternalDString, Tcl_UtfToExternal, -Tcl_WinTCharToUtf, Tcl_WinUtfToTChar, -Tcl_GetEncodingName, Tcl_SetSystemEncoding, Tcl_GetEncodingNames, -Tcl_CreateEncoding, Tcl_GetDefaultEncodingDir, -Tcl_SetDefaultEncodingDir \- procedures for creating and using encodings. +Tcl_GetEncoding, Tcl_FreeEncoding, Tcl_ExternalToUtfDString, Tcl_ExternalToUtf, Tcl_UtfToExternalDString, Tcl_UtfToExternal, Tcl_WinTCharToUtf, Tcl_WinUtfToTChar, Tcl_GetEncodingName, Tcl_SetSystemEncoding, Tcl_GetEncodingNames, Tcl_CreateEncoding, Tcl_GetDefaultEncodingDir, Tcl_SetDefaultEncodingDir \- procedures for creating and using encodings. .SH SYNOPSIS .nf \fB#include <tcl.h>\fR diff --git a/unix/mkLinks.tcl b/unix/mkLinks.tcl index f9afcb2..22f54f3 100644 --- a/unix/mkLinks.tcl +++ b/unix/mkLinks.tcl @@ -52,7 +52,7 @@ foreach file $argv { regsub {\\-.*} $line {} line foreach name [split $line ,] { regsub -all { } $name "" name - if {[string compare $tail $name$ext] != 0} { + if {![string match $name*$ext $tail]} { puts "if test -r $tail; then" puts " rm -f $name$ext" puts " ln $tail $name$ext" |