home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 0 / 0998 / DeleteTrac.3 < prev    next >
Text File  |  1990-12-28  |  1KB  |  38 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_DeleteTrace.man,v 1.2 89/03/24 14:16:08 ouster Exp $ SPRITE (Berkeley)
  10. '\" 
  11. .so \*(]ltmac.sprite
  12. .HS Tcl_DeleteTrace tcl
  13. .BS
  14. .SH NAME
  15. Tcl_DeleteTrace \- remove a previously-established command trace
  16. .SH SYNOPSIS
  17. .nf
  18. \fB#include <tcl.h>\fR
  19. .sp
  20. \fBTcl_DeleteTrace\fR(\fIinterp, trace\fR)
  21. .SH ARGUMENTS
  22. .AS Tcl_Interp *interp
  23. .AP Tcl_Interp *interp in
  24. Interpreter containing \fItrace\fR.
  25. .AP Tcl_Trace trace in
  26. Token for trace to be removed (return value from previous call
  27. to Tcl_CreateTrace).
  28. .BE
  29.  
  30. .SH DESCRIPTION
  31. .PP
  32. This procedure removes a trace, so that no future calls will be
  33. made to the procedure associated with the trace.  After \fBTcl_DeleteTrace\fR
  34. returns, the caller should never again use the \fItrace\fR token.
  35.  
  36. .SH KEYWORDS
  37. delete, interpreter, trace
  38.