From: Teemu Likonen Date: Sun, 16 Apr 2017 13:14:22 +0000 (+0300) Subject: Fix org-agenda's command for calendar-lunar-phases X-Git-Tag: emacs-26.0.90~521^2~618 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8750a4546a1da4f03243df12c7e5b89f2c32d27e;p=emacs.git Fix org-agenda's command for calendar-lunar-phases Function org-agenda-phases-of-moon tries to call a non-existing function calendar-phases-of-moon. The correct function is calendar-lunar-phases. --- diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el index c870ddd4e43..153e3772b0c 100644 --- a/lisp/org/org-agenda.el +++ b/lisp/org/org-agenda.el @@ -9533,7 +9533,7 @@ entries in that Org-mode file." (defun org-agenda-phases-of-moon () "Display the phases of the moon for the 3 months around the cursor date." (interactive) - (org-agenda-execute-calendar-command 'calendar-phases-of-moon)) + (org-agenda-execute-calendar-command 'calendar-lunar-phases)) (defun org-agenda-holidays () "Display the holidays for the 3 months around the cursor date."