]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix org-agenda's command for calendar-lunar-phases
authorTeemu Likonen <tlikonen@iki.fi>
Sun, 16 Apr 2017 13:14:22 +0000 (16:14 +0300)
committerTeemu Likonen <tlikonen@iki.fi>
Sun, 16 Apr 2017 19:06:48 +0000 (22:06 +0300)
Function org-agenda-phases-of-moon tries to call a non-existing
function calendar-phases-of-moon. The correct function is
calendar-lunar-phases.

lisp/org/org-agenda.el

index c870ddd4e43f74090f8e151a25a6781ba44735b3..153e3772b0cfc129873d0a77f9f1f53785451c35 100644 (file)
@@ -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."