# HG changeset patch # User Stefan Monnier # Date 1139244995 0 # Node ID 3d624f4184ece8dc595fc24f652ab5c7fdf3bc53 # Parent 1f94e3d57be66adb8e03b437c45ab4fa22853719 (calendar-increment-month): Typo in last change. diff -r 1f94e3d57be6 -r 3d624f4184ec lisp/ChangeLog --- a/lisp/ChangeLog Mon Feb 06 15:58:38 2006 +0000 +++ b/lisp/ChangeLog Mon Feb 06 16:56:35 2006 +0000 @@ -1,3 +1,7 @@ +2006-02-06 Stefan Monnier + + * calendar/calendar.el (calendar-increment-month): Typo in last change. + 2006-02-06 Thien-Thi Nguyen * vc-svn.el (vc-svn-previous-version, vc-svn-next-version): New funcs. @@ -5,7 +9,7 @@ 2006-02-06 Lars Hansen * generic-x.el (etc-fstab-generic-mode): Add file system types - cifs and usbdevfs. Allow special chars in file names. + cifs and usbdevfs. Allow special chars in file names. 2006-02-05 Jay Belanger @@ -46,13 +50,12 @@ * textmodes/nroff-mode.el (nroff-font-lock-keywords): Don't be greedy to find the closing bracket in \*[...] and similar expressions. This is a first rough fix -- many additional - refinements are necessary to make nroff mode really usable with - groff. + refinements are necessary to make nroff mode really usable with groff. 2006-02-03 Jens Petersen (tiny change) - * international/mule-cmds.el (set-locale-environment): Add - "/usr/share/X11/locale/locale.alias" to search list for xorg-x11 + * international/mule-cmds.el (set-locale-environment): + Add "/usr/share/X11/locale/locale.alias" to search list for xorg-x11 libX11. 2006-02-03 Joe Wells (tiny change) diff -r 1f94e3d57be6 -r 3d624f4184ec lisp/calendar/calendar.el --- 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))