Variable: mm-uu-binhex-decode-function

mm-uu-binhex-decode-function is a customizable variable defined in mm-uu.el.gz.

Value

binhex-decode-region

Documentation

Function to binhex decode.

Internal function is done in elisp by default, therefore decoding may appear to be horribly slow . You can make Gnus use the external Unix decoder, such as hexbin.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-uu.el.gz
(defcustom mm-uu-binhex-decode-function 'binhex-decode-region
  "Function to binhex decode.
Internal function is done in elisp by default, therefore decoding may
appear to be horribly slow . You can make Gnus use the external Unix
decoder, such as hexbin."
  :type '(choice (function-item :tag "Auto detect" binhex-decode-region)
		 (function-item :tag "Internal" binhex-decode-region-internal)
		 (function-item :tag "External" binhex-decode-region-external))
  :group 'gnus-article-mime)