From 5323cbb66aaae2bf05acb4c3c3fa8a693273b74d Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 15 Dec 2000 09:43:40 +0000 Subject: [PATCH] * test-sasl.el (test-sasl-digest-md5-acap): Replace #' with `function'. --- tests/test-sasl.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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") -- 1.7.10.4