[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: One more question about elisp
From: |
Francis Moreau |
Subject: |
Re: One more question about elisp |
Date: |
Sun, 08 Nov 2009 16:20:14 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) |
Stefan Monnier <monnier@iro.umontreal.ca> writes:
>>>> I'm now wondering what is the elisp way to create structured objects
>>>> and how to access them later.
>>> in the cl package, there is defstruct, which does basically what your
>>> C-example does:
>>> (defstruct person
>>> (age)
>>> (name))
>
>> Actually I'm not trying to do elisp the C way, I'm just wondering the
>> usual/right way to do this in elisp.
>
> defstruct is the right way to do it.
>
Ok thanks but that's the clisp way actually.
--
Francis
Re: One more question about elisp, Xah Lee, 2009/11/07
- Re: One more question about elisp, Francis Moreau, 2009/11/06
- Re: One more question about elisp, David Kastrup, 2009/11/06
- Re: One more question about elisp, LanX, 2009/11/06
- Re: One more question about elisp, Barry Margolin, 2009/11/06
- Re: One more question about elisp, Francis Moreau, 2009/11/07
- Re: One more question about elisp, Pascal J. Bourguignon, 2009/11/07