Function: binhex-decode-region

binhex-decode-region is an autoloaded, interactive and byte-compiled function defined in binhex.el.gz.

Signature

(binhex-decode-region START END)

Documentation

Binhex decode region between START and END.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/binhex.el.gz
;;;###autoload
(defun binhex-decode-region (start end)
  "Binhex decode region between START and END."
  (interactive "r")
  (if binhex-use-external
      (binhex-decode-region-external start end)
    (binhex-decode-region-internal start end)))