summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeemu Likonen <tlikonen@iki.fi>2017-04-16 16:14:22 +0300
committerTeemu Likonen <tlikonen@iki.fi>2017-04-16 22:06:48 +0300
commit8750a4546a1da4f03243df12c7e5b89f2c32d27e (patch)
treef29872419c71bbbd89a23bebab348eba8274782a
parent8d96feae07c618f591a952f8f10ae949735b4050 (diff)
downloademacs-8750a4546a1da4f03243df12c7e5b89f2c32d27e.tar.gz
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.
-rw-r--r--lisp/org/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
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."