Don't do that!  You have an infinite recursion here.  You need to include
some condition in the code which will stop the recursive calls to "x" at
some point (preferably before 50 levels of recursion).

On 1/16/02 12:08 PM, "Chiriac Petrica Clement" <[EMAIL PROTECTED]> wrote:

> This code produce "Segmentation fault"
>
> proc x {} {
>   puts [info level]
>   catch {
>     x
>   }
> }

Reply via email to