From: Gerald Jay Sussman Date: Sun, 24 Jan 1993 03:47:34 +0000 (+0000) Subject: updated floppy.scm to conform to the change made by Bill X-Git-Tag: 20090517-FFI~8573 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=197133b69ee0f3fe5ea8986e0f3afcbcf329a1f1;p=mit-scheme.git updated floppy.scm to conform to the change made by Bill RCS file: /scheme/src/runtime/RCS/unxprm.scm,v Working file: unxprm.scm head: 1.23 branch: locks: strict access list: symbolic names: RELEASE_7_1_0: 1.9 RELEASE_7_0_0: 1.4 comment leader: ";;; " keyword substitution: kv total revisions: 23; selected revisions: 23 description: ---------------------------- revision 1.23 date: 1993/01/12 19:01:28; author: gjr; state: Exp; lines: +2 -5 Remove current-file-time, replaced by get-time. --- diff --git a/v7/src/6001/floppy.scm b/v7/src/6001/floppy.scm index 6cfa0036d..b02077f51 100644 --- a/v7/src/6001/floppy.scm +++ b/v7/src/6001/floppy.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: floppy.scm,v 1.11 1992/09/30 18:51:38 cph Exp $ +$Id: floppy.scm,v 1.12 1993/01/24 03:47:34 gjs Exp $ Copyright (c) 1992 Massachusetts Institute of Technology @@ -661,7 +661,7 @@ M-x rename-file, or use the `r' command in Dired.") (define (time-zone-offset) (let ((decoded-time (get-decoded-time)) - (file-time (unix/current-file-time))) + (file-time (unix/get-time))) (- (* (quotient file-time 60) 60) (make-dos-time (decoded-time/year decoded-time) (decoded-time/month decoded-time)