diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 21:47:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2003-09-29 21:47:38 (GMT) |
commit | ae8b2781ec0977262031b44204398025d09efb74 (patch) | |
tree | 59db67c82eafe98879f8907644e7c3408761ef46 | |
parent | a5af050b4298a8a5e563e905b39b8f757df1b90c (diff) | |
download | tcl-ae8b2781ec0977262031b44204398025d09efb74.zip tcl-ae8b2781ec0977262031b44204398025d09efb74.tar.gz tcl-ae8b2781ec0977262031b44204398025d09efb74.tar.bz2 |
Oops. Missed out on an index line update
-rw-r--r-- | doc/Exit.3 | 4 | ||||
-rw-r--r-- | unix/mkLinks | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -4,13 +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: Exit.3,v 1.5 2003/09/29 21:38:48 dkf Exp $ +'\" RCS: @(#) $Id: Exit.3,v 1.6 2003/09/29 21:47:38 dkf Exp $ '\" .so man.macros .TH Tcl_Exit 3 8.5 Tcl "Tcl Library Procedures" .BS .SH NAME -Tcl_Exit, Tcl_Finalize, Tcl_CreateExitHandler, Tcl_DeleteExitHandler, Tcl_ExitThread, Tcl_FinalizeThread, Tcl_CreateThreadExitHandler, Tcl_DeleteThreadExitHandler \- end the application or thread (and invoke exit handlers) +Tcl_Exit, Tcl_Finalize, Tcl_CreateExitHandler, Tcl_DeleteExitHandler, Tcl_ExitThread, Tcl_FinalizeThread, Tcl_CreateThreadExitHandler, Tcl_DeleteThreadExitHandler, Tcl_SetExitProc \- end the application or thread (and invoke exit handlers) .SH SYNOPSIS .nf \fB#include <tcl.h>\fR diff --git a/unix/mkLinks b/unix/mkLinks index 7d7241f..9568218 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -565,6 +565,7 @@ if test -r Exit.3; then rm -f Tcl_FinalizeThread.3 Tcl_FinalizeThread.3.* rm -f Tcl_CreateThreadExitHandler.3 Tcl_CreateThreadExitHandler.3.* rm -f Tcl_DeleteThreadExitHandler.3 Tcl_DeleteThreadExitHandler.3.* + rm -f Tcl_SetExitProc.3 Tcl_SetExitProc.3.* ln $S Exit.3$Z Tcl_Exit.3$Z ln $S Exit.3$Z Tcl_Finalize.3$Z ln $S Exit.3$Z Tcl_CreateExitHandler.3$Z @@ -573,6 +574,7 @@ if test -r Exit.3; then ln $S Exit.3$Z Tcl_FinalizeThread.3$Z ln $S Exit.3$Z Tcl_CreateThreadExitHandler.3$Z ln $S Exit.3$Z Tcl_DeleteThreadExitHandler.3$Z + ln $S Exit.3$Z Tcl_SetExitProc.3$Z fi if test -r ExprLong.3; then rm -f ExprLong.3.* |