From: yamaoka Date: Fri, 15 Dec 2000 08:38:46 +0000 (+0000) Subject: * lunit.el (lunit-make-test-suite-from-class): Replace #' with `function'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=706d4fa56f9015289ebdbbde68f3b79c30de7b75;p=elisp%2Fflim.git * lunit.el (lunit-make-test-suite-from-class): Replace #' with `function'. --- diff --git a/lunit.el b/lunit.el index 7debb2a..f3ed001 100644 --- a/lunit.el +++ b/lunit.el @@ -278,7 +278,7 @@ TESTS holds a number of instances of `lunit-test'." (null (get symbol 'luna-method-qualifier))) (push (lunit-make-test-case class symbol) tests))) (luna-class-obarray (luna-find-class class))) - (apply #'lunit-make-test-suite tests))) + (apply (function lunit-make-test-suite) tests))) (defun lunit (test) "Run TEST and display the result."