Tcl Source Code

Artifact [52371e021c]
Login

Artifact 52371e021cae687b2b866c10beb4c4a6629b9fa5:

Attachment "ak.414435.0.diff" to ticket [414435ffff] added by andreas_kupries 2001-04-07 06:18:10.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/tcl/tcl/ChangeLog,v
retrieving revision 1.410
diff -u -r1.410 ChangeLog
--- ChangeLog	2001/04/06 17:57:31	1.410
+++ ChangeLog	2001/04/06 23:07:06
@@ -1,3 +1,16 @@
+2001-04-07  Andreas Kupries  <[email protected]>
+
+	* 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].
+
 2001-04-06  Don Porter  <[email protected]>
 
 	* library/init.tcl:
Index: doc/Alloc.3
===================================================================
RCS file: /cvsroot/tcl/tcl/doc/Alloc.3,v
retrieving revision 1.4
diff -u -r1.4 Alloc.3
--- doc/Alloc.3	2001/03/28 02:26:39	1.4
+++ doc/Alloc.3	2001/04/06 23:07:06
@@ -10,7 +10,7 @@
 .TH Tcl_Alloc 3 7.5 Tcl "Tcl Library Procedures"
 .BS
 .SH NAME
-Tcl_Alloc, Tcl_Free, Tcl_Realloc \- allocate or free heap memory
+Tcl_Alloc, Tcl_Free, Tcl_Realloc, Tcl_AttemptAlloc, Tcl_AttemptRealloc \- allocate or free heap memory
 .SH SYNOPSIS
 .nf
 \fB#include <tcl.h>\fR
Index: doc/StringObj.3
===================================================================
RCS file: /cvsroot/tcl/tcl/doc/StringObj.3,v
retrieving revision 1.7
diff -u -r1.7 StringObj.3
--- doc/StringObj.3	2001/04/04 16:07:20	1.7
+++ doc/StringObj.3	2001/04/06 23:07:08
@@ -10,7 +10,7 @@
 .TH Tcl_StringObj 3 8.1 Tcl "Tcl Library Procedures"
 .BS
 .SH NAME
-Tcl_NewStringObj, Tcl_NewUnicodeObj, Tcl_SetStringObj, Tcl_SetUnicodeObj, Tcl_GetStringFromObj, Tcl_GetString, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendToObj, Tcl_AppendUnicodeToObj, Tcl_AppendStringsToObj, Tcl_AppendStringsToObjVA, Tcl_AppendObjToObj, Tcl_SetObjLength, Tcl_ConcatObj \- manipulate Tcl objects as strings
+Tcl_NewStringObj, Tcl_NewUnicodeObj, Tcl_SetStringObj, Tcl_SetUnicodeObj, Tcl_GetStringFromObj, Tcl_GetString, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendToObj, Tcl_AppendUnicodeToObj, Tcl_AppendStringsToObj, Tcl_AppendStringsToObjVA, Tcl_AppendObjToObj, Tcl_SetObjLength, Tcl_ConcatObj, Tcl_AttemptSetObjLength \- manipulate Tcl objects as strings
 .SH SYNOPSIS
 .nf
 \fB#include <tcl.h>\fR
Index: doc/Utf.3
===================================================================
RCS file: /cvsroot/tcl/tcl/doc/Utf.3,v
retrieving revision 1.8
diff -u -r1.8 Utf.3
--- doc/Utf.3	2000/05/08 22:00:01	1.8
+++ doc/Utf.3	2001/04/06 23:07:09
@@ -10,7 +10,7 @@
 .TH Utf 3 "8.1" Tcl "Tcl Library Procedures"
 .BS
 .SH NAME
-Tcl_UniChar, Tcl_UniCharToUtf, Tcl_UtfToUniChar, Tcl_UniCharToUtfDString, Tcl_UtfToUniCharDString, Tcl_UniCharLen, Tcl_UniCharNcmp, Tcl_UtfCharComplete, Tcl_NumUtfChars, Tcl_UtfFindFirst, Tcl_UtfFindLast, Tcl_UtfNext, Tcl_UtfPrev, Tcl_UniCharAtIndex, Tcl_UtfAtIndex, Tcl_UtfBackslash \- routines for manipulating UTF-8 strings.
+Tcl_UniChar, Tcl_UniCharCaseMatch, Tcl_UniCharNcasecmp, Tcl_UniCharToUtf, Tcl_UtfToUniChar, Tcl_UniCharToUtfDString, Tcl_UtfToUniCharDString, Tcl_UniCharLen, Tcl_UniCharNcmp, Tcl_UtfCharComplete, Tcl_NumUtfChars, Tcl_UtfFindFirst, Tcl_UtfFindLast, Tcl_UtfNext, Tcl_UtfPrev, Tcl_UniCharAtIndex, Tcl_UtfAtIndex, Tcl_UtfBackslash \- routines for manipulating UTF-8 strings.
 .SH SYNOPSIS
 .nf
 \fB#include <tcl.h>\fR
Index: unix/mkLinks
===================================================================
RCS file: /cvsroot/tcl/tcl/unix/mkLinks,v
retrieving revision 1.22
diff -u -r1.22 mkLinks
--- unix/mkLinks	2001/04/05 15:14:59	1.22
+++ unix/mkLinks	2001/04/06 23:07:12
@@ -54,9 +54,13 @@
     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 @@
     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 @@
     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 @@
 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 @@
     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