help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Organized Learning


From: Kevin Rodgers
Subject: Re: Organized Learning
Date: Wed, 24 Sep 2003 17:06:27 -0600
User-agent: Mozilla/5.0 (X11; U; SunOS i86pc; en-US; rv:0.9.4.1) Gecko/20020406 Netscape6/6.2.2

Dan Anderson wrote:

        I put your code in my .emacs and it didn't display a tip of the day on
startup (is it supposed to?).  What would I do to get it to display a
tip of the day on startup?

All the code does is define a function.  You need to actually call it:


        (totd)  ; Display the tip of the day


Or you could annoy yourself continually:

        (run-with-idle-timer 60 t 'totd)
        (setq special-display-buffer-names
              (cons "*Tip of the day*" special-display-buffer-names))

--
Kevin Rodgers



reply via email to

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