]> git.eshelyaron.com Git - emacs.git/commitdiff
(cl-make-hash-table): Fix typo.
authorFrancesco Potortì <pot@gnu.org>
Mon, 26 May 2003 15:57:47 +0000 (15:57 +0000)
committerFrancesco Potortì <pot@gnu.org>
Mon, 26 May 2003 15:57:47 +0000 (15:57 +0000)
lisp/emacs-lisp/cl-extra.el

index 194f6c6d9b48cc59a7d792b953ec73fd58c3c96d..bfbff40c1fe833c3babed8205c8daae8e7ef9f5b 100644 (file)
@@ -637,7 +637,7 @@ Keywords supported:  :test :size
 The Common Lisp keywords :rehash-size and :rehash-threshold are ignored."
   (let ((cl-test (or (car (cdr (memq :test cl-keys))) 'eql))
        (cl-size (or (car (cdr (memq :size cl-keys))) 20)))
-    (make-hash-table :size cl-size :test cl-size)))
+    (make-hash-table :size cl-size :test cl-test)))
 
 (defun cl-hash-table-p (x)
   "Return t if OBJECT is a hash table."