home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 0 / 0998 / DeleteInte.3 < prev    next >
Text File  |  1990-12-28  |  1KB  |  36 lines

  1. '\" Copyright 1989 Regents of the University of California
  2. '\" Permission to use, copy, modify, and distribute this
  3. '\" documentation for any purpose and without fee is hereby
  4. '\" granted, provided that this notice appears in all copies.
  5. '\" The University of California makes no representations about
  6. '\" the suitability of this material for any purpose.  It is
  7. '\" provided "as is" without express or implied warranty.
  8. '\" 
  9. '\" $Header: /sprite/src/lib/tcl/RCS/Tcl_DeleteInterp.man,v 1.2 89/03/24 14:16:06 ouster Exp $ SPRITE (Berkeley)
  10. '\" 
  11. .so \*(]ltmac.sprite
  12. .HS Tcl_DeleteInterp tcl
  13. .BS
  14. .SH NAME
  15. Tcl_DeleteInterp \- destroy a Tcl command interpreter
  16. .SH SYNOPSIS
  17. .nf
  18. \fB#include <tcl.h>\fR
  19. .sp
  20. \fBTcl_DeleteInterp\fR(\fIinterp\fR)
  21. .SH ARGUMENTS
  22. .AS Tcl_Interp *interp
  23. .AP Tcl_Interp *interp in
  24. Token for interpreter to be destroyed.
  25. .BE
  26.  
  27. .SH DESCRIPTION
  28. .PP
  29. This procedure destroys a command interpreter and releases all of
  30. the resources associated with it, including variables, procedures,
  31. and application-specific command bindings.  After \fBTcl_DeleteInterp\fR
  32. returns the caller should never again use the \fIinterp\fR token.
  33.  
  34. .SH KEYWORDS
  35. command, delete, interpreter
  36.