[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Segfault connected with taking class-of memoized code?
From: |
Marius Vollmer |
Subject: |
Re: Segfault connected with taking class-of memoized code? |
Date: |
15 Apr 2001 18:11:29 +0200 |
User-agent: |
Gnus/5.0803 (Gnus v5.8.3) Emacs/20.7 |
Neil Jerram <address@hidden> writes:
> >>>>> "Neil" == Neil Jerram <address@hidden> writes:
>
> Neil> [...]
> Neil> debug> evaluate (class-of exp)
> Neil> Segmentation fault
>
> A much simpler example is this:
>
> address@hidden:~$ guile -q
> guile> (class-of class-of)
> Segmentation fault
> address@hidden:~$
This happens when you don't have loaded all of Goops yet. A quick fix
is to `(use-modules (oop goops))', then class-of will magically start
to work.
I'll look into a real fix.