From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Sexton Subject: Minor bug: org-agenda-holidays Date: Tue, 21 Dec 2010 20:21:43 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=51640 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PV8in-0002Wt-1V for emacs-orgmode@gnu.org; Tue, 21 Dec 2010 15:22:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PV8im-00081Z-2E for emacs-orgmode@gnu.org; Tue, 21 Dec 2010 15:22:08 -0500 Received: from lo.gmane.org ([80.91.229.12]:58066) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PV8il-00081S-R5 for emacs-orgmode@gnu.org; Tue, 21 Dec 2010 15:22:08 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PV8ic-0004xr-Vd for emacs-orgmode@gnu.org; Tue, 21 Dec 2010 21:22:03 +0100 Received: from rp.young.med.auckland.ac.nz ([130.216.140.20]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Dec 2010 21:21:58 +0100 Received: from psexton by rp.young.med.auckland.ac.nz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 21 Dec 2010 21:21:58 +0100 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: emacs-orgmode@gnu.org In org-agenda.el, the function org-agenda-holidays is coded as: (defun org-agenda-holidays () "Display the holidays for the 3 months around the cursor date." (interactive) (org-agenda-execute-calendar-command 'list-calendar-holidays)) 'list-calendar-holidays' does not exist. It should be 'calendar-list-holidays'. Paul