Fix bug: auto-save initialization was not looking for a local binding
authorChris Hanson <org/chris-hanson/cph>
Mon, 21 Jul 1997 04:34:58 +0000 (04:34 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 21 Jul 1997 04:34:58 +0000 (04:34 +0000)
of the variable auto-save-default.

v7/src/edwin/autosv.scm

index 4d9f8c325dbe84ae7cc6231f720d671a8ab007ee..bb16e3e33585830278bb92dc135c6ffc4df95152 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;;    $Id: autosv.scm,v 1.31 1997/01/03 04:06:40 cph Exp $
+;;;    $Id: autosv.scm,v 1.32 1997/07/21 04:34:58 cph Exp $
 ;;;
 ;;;    Copyright (c) 1986, 1989-97 Massachusetts Institute of Technology
 ;;;
@@ -98,7 +98,7 @@ This file is not the file you visited; that changes only when you save."
   (lambda () (do-auto-save)))
 \f
 (define (setup-buffer-auto-save! buffer)
-  (if (ref-variable auto-save-default)
+  (if (ref-variable auto-save-default buffer)
       (enable-buffer-auto-save! buffer)
       (disable-buffer-auto-save! buffer)))