From 20469436ca3e18855e7573ad659b68cc1c666caf Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 14 Sep 1999 01:49:06 +0000 Subject: [PATCH] (mime-mc-gpg-process-region): Call the parser function with the 6th arg `nil' if `mc-gpg-handle-pre095' is not bound. It is supposed to be used with another mc-gpg.el which is available from http://www.lothar.com/tech/crypto/. --- mime-mc.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mime-mc.el b/mime-mc.el index 22c7164..4782504 100644 --- a/mime-mc.el +++ b/mime-mc.el @@ -410,7 +410,9 @@ optional argument COMMENT if it is specified." ;; feed the parser (condition-case err (setq parser-result - (funcall parser mybuf stderr-buf status-buf rc) + (if (boundp 'mc-gpg-handle-pre095) + (funcall parser mybuf stderr-buf status-buf rc) + (funcall parser mybuf stderr-buf status-buf rc nil)) ) (error (message "%s" err) -- 1.7.10.4