diff options
author | ericm <ericm> | 2000-04-27 01:46:58 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-04-27 01:46:58 (GMT) |
commit | 6061ec2039f13f53e1483b78e8e3e21c9b44df35 (patch) | |
tree | 8974ebecae490aa05cc0bdb7be7153f32954a587 /unix/mkLinks | |
parent | 0efff5ec3b5a0504d9f5c1f8a5f38bd6e98262e7 (diff) | |
download | tcl-6061ec2039f13f53e1483b78e8e3e21c9b44df35.zip tcl-6061ec2039f13f53e1483b78e8e3e21c9b44df35.tar.gz tcl-6061ec2039f13f53e1483b78e8e3e21c9b44df35.tar.bz2 |
* doc/memory.n: Man page for Tcl "memory" command, which is
created when TCL_MEM_DEBUG is defined at compile time.
* doc/TCL_MEM_DEBUG.3: Man page with overall information about
TCL_MEM_DEBUG usage.
* doc/DumpActiveMemory.3: Man page for Tcl_DumpActiveMemory,
Tcl_InitMemory, and Tcl_ValidateAllMemory [Bug: 1816, 1835].
* generic/tclCkalloc.c: Fixed some function headers.
* unix/mkLinks: Regen'd with new mkLinks.tcl.
* unix/mkLinks.tcl: Fixed indentation, made link setup more
intelligent (only do one existance test per man page, instead of
one per function).
Diffstat (limited to 'unix/mkLinks')
-rw-r--r-- | unix/mkLinks | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unix/mkLinks b/unix/mkLinks index 050851e..86e9609 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -286,6 +286,14 @@ if test -r DoubleObj.3; then ln DoubleObj.3 Tcl_SetDoubleObj.3 ln DoubleObj.3 Tcl_GetDoubleFromObj.3 fi +if test -r DumpActiveMemory.3; then + rm -f Tcl_DumpActiveMemory.3 + rm -f Tcl_InitMemory.3 + rm -f Tcl_ValidateAllMemory.3 + ln DumpActiveMemory.3 Tcl_DumpActiveMemory.3 + ln DumpActiveMemory.3 Tcl_InitMemory.3 + ln DumpActiveMemory.3 Tcl_ValidateAllMemory.3 +fi if test -r Encoding.3; then rm -f Tcl_GetEncoding.3 rm -f Tcl_FreeEncoding.3 |