From: Chris Hanson Date: Thu, 20 Aug 1987 02:44:54 +0000 (+0000) Subject: Add `pathname-newest' operation. X-Git-Tag: 20090517-FFI~13140 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=67b0ad5965b468cbc21148fe6e6867a97aabf699;p=mit-scheme.git Add `pathname-newest' operation. --- diff --git a/v7/src/runtime/unxpth.scm b/v7/src/runtime/unxpth.scm index edf33dee9..88dd78ff2 100644 --- a/v7/src/runtime/unxpth.scm +++ b/v7/src/runtime/unxpth.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxpth.scm,v 1.4 1987/07/19 21:43:50 cph Rel $ +;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/unxpth.scm,v 1.5 1987/08/20 02:44:54 cph Exp $ ;;; ;;; Copyright (c) 1987 Massachusetts Institute of Technology ;;; @@ -335,4 +335,8 @@ )) (define init-file-pathname - (string->pathname ".scheme.init")) \ No newline at end of file + (string->pathname ".scheme.init")) + +(define (pathname-newest pathname) + ;; For now, version numbers are disabled. + (pathname-new-version pathname false)) \ No newline at end of file