Fix fencepost error in month.
authorArthur Gleckler <edu/mit/csail/zurich/arthur>
Sun, 8 Mar 1992 17:38:09 +0000 (17:38 +0000)
committerArthur Gleckler <edu/mit/csail/zurich/arthur>
Sun, 8 Mar 1992 17:38:09 +0000 (17:38 +0000)
v7/src/edwin/notify.scm

index e6d6eb042feadbf71b5b1af42e2c1f177eb41fdb..3602f61b442559c804fde2c7417c216a2ca9aff4 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/notify.scm,v 1.7 1992/03/08 16:32:05 arthur Exp $
+;;;    $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/notify.scm,v 1.8 1992/03/08 17:38:09 arthur Exp $
 ;;;
 ;;;    Copyright (c) 1992 Massachusetts Institute of Technology
 ;;;
@@ -77,7 +77,7 @@
                   (vector-ref
                    '#(" Jan" " Feb" " Mar" " Apr" " May" " Jun"
                      " Jul" " Aug" " Sep" " Oct" " Nov" " Dec")
-                   (decoded-time/month time)))))
+                   (-1+ (decoded-time/month time))))))
 
 (define-variable notify-show-load
   "If true, the notifier displays the load average."