From: Kevin M. Rosenberg Date: Fri, 16 May 2003 13:05:28 +0000 (+0000) Subject: r4982: Auto commit for Debian build X-Git-Tag: v1.96~201 X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=commitdiff_plain;h=a5e8d90b159f1a8dcef4e954a97cae6eb5396423 r4982: Auto commit for Debian build --- diff --git a/functions.lisp b/functions.lisp index 3bc09bc..d470866 100644 --- a/functions.lisp +++ b/functions.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: functions.lisp,v 1.2 2003/05/16 12:55:15 kevin Exp $ +;;;; $Id: functions.lisp,v 1.3 2003/05/16 13:05:28 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,7 @@ (in-package :kmrcl) -(defun memo-proc (fn &optional (test 'equal)) +(defun memo-proc (fn &optional (test #'equal)) "Memoize results of call to fn, returns a closure with hash-table" (let ((cache (make-hash-table :test test))) #'(lambda (&rest args) @@ -27,7 +27,7 @@ val (setf (gethash args cache) (apply fn args))))))) -(defun memoize (fn-name &optional (test 'equal)) +(defun memoize (fn-name &optional (test #'equal)) (setf (fdefinition fn-name) (memo-proc (fdefinition fn-name) test))) (defmacro defun-memo (fn args &body body)