#| -*-Scheme-*-
-$Id: edextra.scm,v 1.27 1999/01/02 06:06:43 cph Exp $
+$Id: edextra.scm,v 1.28 1999/01/28 04:01:02 cph Exp $
Copyright (c) 1992-1999 Massachusetts Institute of Technology
(let ((reply-to
(prompt-for-string "Please enter an email address for replies"
default-reply-to
- 'INSERTED-DEFAULT)))
+ 'DEFAULT-TYPE 'INSERTED-DEFAULT)))
(if (not (string-null? reply-to))
(begin
(set! default-reply-to reply-to)
#| -*-Scheme-*-
-$Id: floppy.scm,v 1.24 1999/01/02 06:06:43 cph Exp $
+$Id: floppy.scm,v 1.25 1999/01/28 04:01:08 cph Exp $
Copyright (c) 1992-1999 Massachusetts Institute of Technology
\f
(set! prompt-for-pathname*
(let ((usual prompt-for-pathname*))
- (lambda (prompt directory verify-final-value? require-match?)
- (let ((pathname
- (usual prompt directory verify-final-value? require-match?)))
+ (lambda args
+ (let ((pathname (apply usual args)))
(if (or (not (student-directory? pathname))
(valid-dos-filename? (file-namestring pathname))
(file-exists? pathname)
(append-string dos-filename-description)
(prompt-for-yes-or-no? "Use this non-DOS name"))))
pathname
- (prompt-for-pathname* prompt directory
- verify-final-value? require-match?))))))
+ (apply prompt-for-pathname* args))))))
(define (student-directory? pathname)
(let ((pathname (->pathname pathname))