home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / tcl / 1085 < prev    next >
Encoding:
Text File  |  1992-07-31  |  1.8 KB  |  35 lines

  1. Newsgroups: comp.lang.tcl
  2. Path: sparky!uunet!cis.ohio-state.edu!zaphod.mps.ohio-state.edu!darwin.sura.net!tulane!cpu.com!cpu.com!GWLESTER
  3. From: gwlester@cpu.com (Gerald W. Lester)
  4. Subject: Re: How do I imbed tcl in an application
  5. Nntp-Posting-Host: merlin.cpu.com
  6. References: <1992Jul27.175107.7633@rchland.ibm.com>    <ADRIANHO.92Jul27175403@barkley.berkeley.edu>    <1992Jul28.113922.19882@cas.org>,<156g6sINNnp2@agate.berkeley.edu>    <1992Jul29.222557.7305@cpu.com>,<ADRIANHO.92Jul29201730@barkley.berkeley.edu>    <1992Jul30.130352.11885@cpu.com>,<ADRIANHO.92Jul30145641@barkley.berkeley.edu>
  7. Sender: usenet@cpu.com (Usenet administrator)
  8. Organization: Computerized Processes Unlimited, Metairie, LA, (504)-889-2784
  9. Date: Fri, 31 Jul 1992 13:25:12 GMT
  10. Message-ID: <1992Jul31.132512.18164@cpu.com>
  11. Reply-To: gwlester@cpu.com
  12. Lines: 21
  13.  
  14. In article <ADRIANHO.92Jul30145641@barkley.berkeley.edu>, adrianho@barkley.berkeley.edu (Adrian J Ho) writes:
  15. >>   Another change that would be noce is to extend the proc command to take
  16. >>an optional fourth arguement that would be a tcl command to invoke when the
  17. >>procedure is deleted.
  18. >
  19. >Adding that just requires a few changes to Tcl_ProcCmd() to accomplish
  20. >that, but I can't think of any application for this enhancement.  Can
  21. >you suggest any concrete examples?  (The reason I ask is coz I figured
  22. >John would've added it a long time ago if it had any utility.)
  23.  
  24. Adrian,
  25.  
  26.     Sure, I'm writting a server.  I have a procedure in my program, that
  27. *must* not be changed (like something that checks security).  I would like to
  28. put a delete command on that causes a failure if, on of the files that get
  29. sourced in to handle a service request, an attempt is made to redefine the 
  30. procedure in question.
  31.  
  32.     If one is using Extended Tcl with packages (*.tlib) the problem becomes
  33. even more likely unless your packages are very small.
  34.  
  35.