POD v. 3rd Edition was - Re: determine the invoking function

2002-05-16 Thread drieux
On Thursday, May 16, 2002, at 11:23 , Wagner, David --- Technical Specialist I ---WGO wrote: > You use the function caller (see Perl Programming chapter 22) and use > 0 for current stack, 1 for the caller, 2 for caller's caller, etc. > > To see who I am, caller(0). > To see w

Re: determine the invoking function

2002-05-16 Thread drieux
On Thursday, May 16, 2002, at 11:27 , Jonathan E. Paton wrote: > --- drieux <[EMAIL PROTECTED]> wrote: > >> On Thursday, May 16, 2002, at 11:14 , [EMAIL PROTECTED] >> wrote: >>> Hello, >>> >>> is it possible to determine within a function from which >>> module/function this one was called? >> >

RE: determine the invoking function

2002-05-16 Thread Wagner, David --- Technical Specialist I ---WGO
ailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 11:15 To: [EMAIL PROTECTED] Subject: determine the invoking function Hello, is it possible to determine within a function from which module/function this one was called? for instance: sub test1 { test2(); } sub test2 { ...

Re: determine the invoking function

2002-05-16 Thread Jonathan E. Paton
--- drieux <[EMAIL PROTECTED]> wrote: > > On Thursday, May 16, 2002, at 11:14 , [EMAIL PROTECTED] wrote: > > > Hello, > > > > is it possible to determine within a function from which > > module/function this one was called? > > perldoc Carp > Not quite Drieux, but close (depending what it is

Re: determine the invoking function

2002-05-16 Thread drieux
On Thursday, May 16, 2002, at 11:14 , [EMAIL PROTECTED] wrote: > Hello, > > is it possible to determine within a function from which > module/function this one was called? perldoc Carp ciao drieux --- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

determine the invoking function

2002-05-16 Thread Christian . Niebuhr
Hello, is it possible to determine within a function from which module/function this one was called? for instance: sub test1 { test2(); } sub test2 { you were called from function test1. } thanks in advance, Christian -- To unsubscribe, e-mail: [EMAIL PROTECTED] For