Skip to content
Snippets Groups Projects
Commit d29844d7 authored by wlott's avatar wlott
Browse files

Fixed doc string for maphash to indicate that it returns NIL instead of T.

parent dcfc8934
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 @@ ...@@ -343,7 +343,7 @@
(defun maphash (map-function hash-table) (defun maphash (map-function hash-table)
"For each entry in HASH-TABLE, calls MAP-FUNCTION on the key and value "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))) (let ((vector (hash-table-table hash-table)))
(declare (simple-vector vector)) (declare (simple-vector vector))
(rehash-if-needed) (rehash-if-needed)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment