From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: FR: date marking in calendar Date: Wed, 05 Mar 2008 16:48:10 +0000 Message-ID: <87mypdf8y5.fsf@bzg.ath.cx> References: <47CDC0CE.7030909@gmail.com> <878x0yp0vy.fsf@bzg.ath.cx> <874pbmjbep.fsf@bzg.ath.cx> <47CE00C4.8020609@gmail.com> <87ejapc3db.fsf@bzg.ath.cx> <47CEC49F.7080601@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JWwn0-0001aq-Fq for emacs-orgmode@gnu.org; Wed, 05 Mar 2008 11:48:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JWwmy-0001Zl-Ue for emacs-orgmode@gnu.org; Wed, 05 Mar 2008 11:48:22 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JWwmy-0001Zc-LW for emacs-orgmode@gnu.org; Wed, 05 Mar 2008 11:48:20 -0500 Received: from nf-out-0910.google.com ([64.233.182.185]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JWwmy-0007Ec-9m for emacs-orgmode@gnu.org; Wed, 05 Mar 2008 11:48:20 -0500 Received: by nf-out-0910.google.com with SMTP id f5so1000654nfh.26 for ; Wed, 05 Mar 2008 08:48:19 -0800 (PST) In-Reply-To: <47CEC49F.7080601@gmail.com> (Wanrong Lin's message of "Wed, 05 Mar 2008 11:04:47 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Wanrong Lin Cc: emacs-orgmode@gnu.org Wanrong Lin writes: > Following your suggestion now I can see a pretty list of scheduled > things when I run "diary", but I don't see any marking of dates in my > calendar buffer. Is there anything I could have missed? (add-hook 'initial-calendar-window-hook 'mark-diary-entries) If %%(org-diary :scheduled :timestamp) throws an error, cheat a little and use this instead: %%(condition-case nil (org-diary :scheduled :timestamp) (error nil)) -- Bastien