diff lisp/calendar/calendar.el @ 68655:3d624f4184ec

(calendar-increment-month): Typo in last change.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 06 Feb 2006 16:56:35 +0000
parents f148491791ae
children 08af43fa19d8 c5406394f567
line wrap: on
line diff
--- a/lisp/calendar/calendar.el	Mon Feb 06 15:58:38 2006 +0000
+++ b/lisp/calendar/calendar.el	Mon Feb 06 16:56:35 2006 +0000
@@ -1308,7 +1308,7 @@
 The return value is a pair (MONTH . YEAR).
 MON defaults to `displayed-month'.  YR defaults to `displayed-year'."
   (unless mon (setq mon displayed-month))
-  (unless yr (setq mon displayed-year))
+  (unless yr (setq yr displayed-year))
   (increment-calendar-month mon yr n)
   (cons mon yr))