emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision


From: Nick Dokos
Subject: Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)
Date: Thu, 12 Feb 2009 10:49:57 -0500

Tom Breton (Tehom) <address@hidden> wrote:

> 
> >>> On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote:
> >>>
> >>
> >> (let*
> >>   ((x 1))
> >>   (eval-after-load 'simple (setq x 2))
> >>   x)
> >>
> >> =3D> 2
> >>
> >>
> >>
> >> (let*
> >>   ((x 1))
> >>   (eval-after-load 'simple '(setq x 2))
> >>   x)
> >>
> >> =3D> 1
> >
> > In fact, I am getting 2 in both cases!!!!!???????
> > Do you really get 1 for the second???
> 
> Yes I do, but it's clear now that I was mistaken about why.  On closer
> inspection, it has to do with emacs not recognizing 'simple because it
> wants to see "simple" instead (string instead of symbol).
> 

That's not correct: eval-after-load will happily accept a symbol instead
of a string, as long as the symbol is a feature provided by the library.
simple.el does that - the last form in it is

(provide 'simple)

Regards,
Nick




reply via email to

[Prev in Thread] Current Thread [Next in Thread]