summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-08 12:23:10 +0100
committerBastien Guerry <bzg@altern.org>2013-03-08 12:23:10 +0100
commit32385e9536db46becd68a3fea1ad52a76f141e65 (patch)
tree9c14a9188f274cb02eacd17fd928b92d7bff246a
parente1f42859b4c784fbf4c0c83a357c8457d285047f (diff)
downloadorg-mode-32385e9536db46becd68a3fea1ad52a76f141e65.tar.gz
org-agenda.el (org-agenda-day-view): Fix parameter's name
* org-agenda.el (org-agenda-day-view): Fix parameter's name.
-rw-r--r--lisp/org-agenda.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index be9742d..1d49c98 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -7623,11 +7623,11 @@ With prefix ARG, go backward that many times the current span."
"Switch to default view for agenda."
(interactive)
(org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
-(defun org-agenda-day-view (&optional day-of-year)
+(defun org-agenda-day-view (&optional day-of-month)
"Switch to daily view for agenda.
-With argument DAY-OF-YEAR, switch to that day of the year."
+With argument DAY-OF-MONTH, switch to that day of the month."
(interactive "P")
- (org-agenda-change-time-span 'day day-of-year))
+ (org-agenda-change-time-span 'day day-of-month))
(defun org-agenda-week-view (&optional iso-week)
"Switch to daily view for agenda.
With argument ISO-WEEK, switch to the corresponding ISO week.