From d29844d77de7c5d9288aec74d75426110b14788e Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 23 Apr 1992 14:11:06 +0000 Subject: [PATCH] Fixed doc string for maphash to indicate that it returns NIL instead of T. --- code/hash.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/hash.lisp b/code/hash.lisp index b8d133486..1aa2a93a0 100644 --- a/code/hash.lisp +++ b/code/hash.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.11 1991/12/14 13:09:37 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/hash.lisp,v 1.12 1992/04/23 14:11:06 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -343,7 +343,7 @@ (defun maphash (map-function hash-table) "For each entry in HASH-TABLE, calls MAP-FUNCTION on the key and value - of the entry; returns T." + of the entry; returns NIL." (let ((vector (hash-table-table hash-table))) (declare (simple-vector vector)) (rehash-if-needed) -- GitLab