emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 8750a45: Fix org-agenda's command for calendar-luna


From: Teemu Likonen
Subject: [Emacs-diffs] master 8750a45: Fix org-agenda's command for calendar-lunar-phases
Date: Sun, 16 Apr 2017 15:07:52 -0400 (EDT)

branch: master
commit 8750a4546a1da4f03243df12c7e5b89f2c32d27e
Author: Teemu Likonen <address@hidden>
Commit: Teemu Likonen <address@hidden>

    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.
---
 lisp/org/org-agenda.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org/org-agenda.el b/lisp/org/org-agenda.el
index c870ddd..153e377 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."



reply via email to

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