From: Arthur Gleckler Date: Sun, 8 Mar 1992 17:38:09 +0000 (+0000) Subject: Fix fencepost error in month. X-Git-Tag: 20090517-FFI~9617 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=4a728db91dbe4461eb34f3422cae3e294fbece08;p=mit-scheme.git Fix fencepost error in month. --- diff --git a/v7/src/edwin/notify.scm b/v7/src/edwin/notify.scm index e6d6eb042..3602f61b4 100644 --- a/v7/src/edwin/notify.scm +++ b/v7/src/edwin/notify.scm @@ -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."