diff options
author | Teemu Likonen <tlikonen@iki.fi> | 2017-04-16 16:14:22 +0300 |
---|---|---|
committer | Teemu Likonen <tlikonen@iki.fi> | 2017-04-16 22:06:48 +0300 |
commit | 8750a4546a1da4f03243df12c7e5b89f2c32d27e (patch) | |
tree | f29872419c71bbbd89a23bebab348eba8274782a /lisp/org | |
parent | 8d96feae07c618f591a952f8f10ae949735b4050 (diff) | |
download | emacs-8750a4546a1da4f03243df12c7e5b89f2c32d27e.tar.gz emacs-8750a4546a1da4f03243df12c7e5b89f2c32d27e.tar.bz2 emacs-8750a4546a1da4f03243df12c7e5b89f2c32d27e.zip |
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.
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org-agenda.el | 2 |
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." |