Fix typo.
authorChris Hanson <org/chris-hanson/cph>
Thu, 28 Jan 1999 06:15:40 +0000 (06:15 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 28 Jan 1999 06:15:40 +0000 (06:15 +0000)
v7/src/edwin/prompt.scm

index a56998964fb224348922d403bdc6dffba0a79cbb..f99218c85a1afd63b511ebb1f1bef797886d5900 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: prompt.scm,v 1.178 1999/01/28 06:10:14 cph Exp $
+;;; $Id: prompt.scm,v 1.179 1999/01/28 06:15:40 cph Exp $
 ;;;
 ;;; Copyright (c) 1986, 1989-1999 Massachusetts Institute of Technology
 ;;;
 (define (name->history name)
   (if (not (symbol? name))
       (error:wrong-type-argument name "symbol" 'NAME->HISTORY))
-  (or (hash-table-get prompt-histories name #f)
+  (or (hash-table/get prompt-histories name #f)
       (let ((history (list 'PROMPT-HISTORY)))
-       (hash-table-put! prompt-histories name history)
+       (hash-table/put! prompt-histories name history)
        history)))
 
 (define (history-length name)