Don't use `third' (don't use cl function).
authormorioka <morioka>
Thu, 2 Oct 1997 07:57:54 +0000 (07:57 +0000)
committermorioka <morioka>
Thu, 2 Oct 1997 07:57:54 +0000 (07:57 +0000)
mime-def.el

index e9e0026..a3bc7b5 100644 (file)
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
 
 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
-;; Version: $Id: mime-def.el,v 0.68 1997-10-02 07:46:27 morioka Exp $
+;; Version: $Id: mime-def.el,v 0.69 1997-10-02 07:57:54 morioka Exp $
 ;; Keywords: definition, MIME, multimedia, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
@@ -174,12 +174,12 @@ FUNCTION.")
 
 (defmacro pgp-function (method)
   "Return function to do service METHOD."
-  (` (car (cdr (assq (, method) (symbol-value 'pgp-function-alist)))))
+  `(cadr (assq ,method (symbol-value 'pgp-function-alist)))
   )
 
 (mapcar (function
         (lambda (method)
-          (autoload (cadr method)(third method))
+          (autoload (cadr method)(nth 2 method))
           ))
        pgp-function-alist)