From 4a728db91dbe4461eb34f3422cae3e294fbece08 Mon Sep 17 00:00:00 2001 From: Arthur Gleckler Date: Sun, 8 Mar 1992 17:38:09 +0000 Subject: [PATCH] Fix fencepost error in month. --- v7/src/edwin/notify.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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." -- 2.25.1