From: yamaoka Date: Fri, 15 Dec 2000 09:43:40 +0000 (+0000) Subject: * test-sasl.el (test-sasl-digest-md5-acap): Replace #' with `function'. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=5323cbb66aaae2bf05acb4c3c3fa8a693273b74d;p=elisp%2Fflim.git * test-sasl.el (test-sasl-digest-md5-acap): Replace #' with `function'. --- diff --git a/tests/test-sasl.el b/tests/test-sasl.el index 07bcaa1..779d27e 100644 --- a/tests/test-sasl.el +++ b/tests/test-sasl.el @@ -18,8 +18,9 @@ (client (sasl-make-client mechanism "chris" "imap" "elwood.innosoft.com")) (sasl-read-passphrase - #'(lambda (prompt) - "secret")) + (function + (lambda (prompt) + "secret"))) step response) (sasl-client-set-property client 'realm "elwood.innosoft.com") @@ -42,8 +43,9 @@ qop=\"auth\",algorithm=md5-sess,charset=utf-8") (client (sasl-make-client mechanism "chris" "acap" "elwood.innosoft.com")) (sasl-read-passphrase - #'(lambda (prompt) - "secret")) + (function + (lambda (prompt) + "secret"))) step response) (sasl-client-set-property client 'realm "elwood.innosoft.com")