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

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

Re: Non-startup auto-reminder from calendar?


From: Edward M. Reingold
Subject: Re: Non-startup auto-reminder from calendar?
Date: 09 Nov 2002 17:39:13 -0600

>>>>> "CB" == Christopher Balz <ChristopherBalz@yahoo.com> writes:

    CB> buffers), the above feature isn't of much use to me.  What is needed,
    CB> I'm sure by more people than just myself, is an Emacs calendar feature
    CB> that will display the day's goings-on say at 9:00 a.m. daily.

Here is how I do it (at midnight):

(require 'midnight)
(setq midnight-delay 1)

(defun update-my-calendar ()
  (let ((diary-buffer (get-file-buffer diary-file))
        (number-of-diary-entries 30))
    (if diary-buffer
        (progn
          (set-buffer diary-buffer)
          (revert-buffer t t)))
    (calendar)))

(add-hook 'midnight-hook 'update-my-calendar)


-- 

Professor Edward M. Reingold                Email: reingold@iit.edu
Chairman, Department of Computer Science    Voice: (312) 567-3309
Illinois Institute of Technology            Assistant: (312) 567-5152
Stuart Building                             Fax:   (312) 567-5067
10 West 31st Street, Suite 236
Chicago, IL  60616-3729  U.S.A.


reply via email to

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