diff options
| author | Stefan Monnier | 2006-02-06 16:56:35 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-02-06 16:56:35 +0000 |
| commit | b06ee3d249708aa7b0f596e31121c46fdee46579 (patch) | |
| tree | 19b35b02a3a1d81783a2459a90e40683d9eec32e /lisp/calendar | |
| parent | cbbd2cd318d1b4ba9803650c2ef8ac2bba00f562 (diff) | |
| download | emacs-b06ee3d249708aa7b0f596e31121c46fdee46579.tar.gz emacs-b06ee3d249708aa7b0f596e31121c46fdee46579.zip | |
(calendar-increment-month): Typo in last change.
Diffstat (limited to 'lisp/calendar')
| -rw-r--r-- | lisp/calendar/calendar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index f01f4305708..b48f63458dc 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1308,7 +1308,7 @@ A negative YR is interpreted as BC; -1 being 1 BC, and so on." | |||
| 1308 | The return value is a pair (MONTH . YEAR). | 1308 | The return value is a pair (MONTH . YEAR). |
| 1309 | MON defaults to `displayed-month'. YR defaults to `displayed-year'." | 1309 | MON defaults to `displayed-month'. YR defaults to `displayed-year'." |
| 1310 | (unless mon (setq mon displayed-month)) | 1310 | (unless mon (setq mon displayed-month)) |
| 1311 | (unless yr (setq mon displayed-year)) | 1311 | (unless yr (setq yr displayed-year)) |
| 1312 | (increment-calendar-month mon yr n) | 1312 | (increment-calendar-month mon yr n) |
| 1313 | (cons mon yr)) | 1313 | (cons mon yr)) |
| 1314 | 1314 | ||