diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-04-06 23:14:08 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-04-06 23:14:08 (GMT) |
commit | 6d043366e408d9c7434a567048ab86ba9b452790 (patch) | |
tree | 0830b9cf515b316e05bbebde6d603f175f856269 /unix | |
parent | b80daf1c9480cf551e21ac7661392ed5b0b621ff (diff) | |
download | tcl-6d043366e408d9c7434a567048ab86ba9b452790.zip tcl-6d043366e408d9c7434a567048ab86ba9b452790.tar.gz tcl-6d043366e408d9c7434a567048ab86ba9b452790.tar.bz2 |
2001-04-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* unix/mkLinks: Updated to incorporate the changes below.
* doc/StringObj.3: Added 'Tcl_AttemptSetObjLength' to the NAME
section. [Bug #414435].
* doc/Alloc.3: Added both 'Tcl_AttemptAlloc' and
'Tcl_AttemptRealloc' to the NAME section. [Bug #414435].
* doc/Utf.3: Added both 'Tcl_UniCharCaseMatch' and
'Tcl_UniCharNcasecmp' to the NAME section. [Bug #414435].
Diffstat (limited to 'unix')
-rw-r--r-- | unix/mkLinks | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index 486c621..ae25177 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -54,9 +54,13 @@ if test -r Alloc.3; then rm -f Tcl_Alloc.3 rm -f Tcl_Free.3 rm -f Tcl_Realloc.3 + rm -f Tcl_AttemptAlloc.3 + rm -f Tcl_AttemptRealloc.3 ln Alloc.3 Tcl_Alloc.3 ln Alloc.3 Tcl_Free.3 ln Alloc.3 Tcl_Realloc.3 + ln Alloc.3 Tcl_AttemptAlloc.3 + ln Alloc.3 Tcl_AttemptRealloc.3 fi if test -r AllowExc.3; then rm -f Tcl_AllowExceptions.3 @@ -892,6 +896,7 @@ if test -r StringObj.3; then rm -f Tcl_AppendObjToObj.3 rm -f Tcl_SetObjLength.3 rm -f Tcl_ConcatObj.3 + rm -f Tcl_AttemptSetObjLength.3 ln StringObj.3 Tcl_NewStringObj.3 ln StringObj.3 Tcl_NewUnicodeObj.3 ln StringObj.3 Tcl_SetStringObj.3 @@ -909,6 +914,7 @@ if test -r StringObj.3; then ln StringObj.3 Tcl_AppendObjToObj.3 ln StringObj.3 Tcl_SetObjLength.3 ln StringObj.3 Tcl_ConcatObj.3 + ln StringObj.3 Tcl_AttemptSetObjLength.3 fi if test -r Tcl_Main.3; then rm -f Tcl_SetMainLoop.3 @@ -974,6 +980,8 @@ if test -r UpVar.3; then fi if test -r Utf.3; then rm -f Tcl_UniChar.3 + rm -f Tcl_UniCharCaseMatch.3 + rm -f Tcl_UniCharNcasecmp.3 rm -f Tcl_UniCharToUtf.3 rm -f Tcl_UtfToUniChar.3 rm -f Tcl_UniCharToUtfDString.3 @@ -990,6 +998,8 @@ if test -r Utf.3; then rm -f Tcl_UtfAtIndex.3 rm -f Tcl_UtfBackslash.3 ln Utf.3 Tcl_UniChar.3 + ln Utf.3 Tcl_UniCharCaseMatch.3 + ln Utf.3 Tcl_UniCharNcasecmp.3 ln Utf.3 Tcl_UniCharToUtf.3 ln Utf.3 Tcl_UtfToUniChar.3 ln Utf.3 Tcl_UniCharToUtfDString.3 |