home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 0 / 0998 / DeleteComm.3 < prev    next >
Text File  |  1990-12-28  |  1KB  |  40 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_DeleteCommand.man,v 1.2 89/03/24 14:16:03 ouster Exp $ SPRITE (Berkeley)
  10. '\" 
  11. .so \*(]ltmac.sprite
  12. .HS Tcl_DeleteCommand tcl
  13. .BS
  14. .SH NAME
  15. Tcl_DeleteCommand \- remove a command from a Tcl interpreter
  16. .SH SYNOPSIS
  17. .nf
  18. \fB#include <tcl.h>\fR
  19. .sp
  20. \fBTcl_DeleteCommand\fR(\fIinterp, cmdName\fR)
  21. .SH ARGUMENTS
  22. .AS Tcl_Interp *cmdName
  23. .AP Tcl_Interp *interp in
  24. Interpreter in which to delete command.
  25. .AP char *cmdName in
  26. Name of command to be deleted.
  27. .BE
  28.  
  29. .SH DESCRIPTION
  30. .PP
  31. This procedure deletes a command from a command interpreter.
  32. Once the call completes, attempts to invoke \fIcmdName\fR in
  33. \fIinterp\fR will result in errors.  If \fIcmdName\fR isn't bound
  34. as a command in \fIinterp\fR then \fBTcl_DeleteCommand\fR does nothing.
  35. There are no restrictions on \fIcmdName\fR:  it may refer to
  36. a built-in command, an application-specific command, or a Tcl procedure.
  37.  
  38. .SH KEYWORDS
  39. command, delete, interpreter
  40.