* pgg-pgp.el (pgg-pgp-messages-coding-system): Abolish.
(pgg-pgp-process-region): Use `binary-funcall' instead of
`binary-to-text-funcall'.
* pgg-pgp5.el (pgg-pgp5-messages-coding-system): Abolish.
(pgg-pgp5-process-region): Use `binary-funcall' instead of
`binary-to-text-funcall'.
:group 'pgg
:type 'boolean)
-(defcustom pgg-messages-coding-system 'undecided
- "Coding system used when reading from a PGP external process."
- :group 'pgg
- :type 'coding-system)
+(defvar pgg-messages-coding-system 'undecided
+ "Coding system used when reading from a PGP external process.")
(defvar pgg-status-buffer " *PGG status*")
(defvar pgg-errors-buffer " *PGG errors*")
(defvar pgg-pgp-user-id nil
"PGP ID of your default identity.")
-(defvar pgg-pgp-messages-coding-system pgg-messages-coding-system
- "Coding system used when reading from a PGP external process.")
-
(defvar pgg-scheme-pgp-instance nil)
;;;###autoload
(unwind-protect
(progn
(setq process
- (apply #'binary-to-text-funcall
- pgg-pgp-messages-coding-system
+ (apply #'binary-funcall
#'start-process-shell-command "*PGP*" output-buffer
program args))
(set-process-sentinel process #'ignore)
(defvar pgg-pgp5-user-id nil
"PGP 5.* ID of your default identity.")
-(defvar pgg-pgp5-messages-coding-system pgg-messages-coding-system
- "Coding system used when reading from a PGP5 external process.")
-
(defvar pgg-scheme-pgp5-instance nil)
;;;###autoload
(unwind-protect
(progn
(setq process
- (apply #'binary-to-text-funcall
- pgg-pgp5-messages-coding-system
+ (apply #'binary-funcall
#'start-process-shell-command "*PGP*" output-buffer
program args))
(set-process-sentinel process #'ignore)