mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(binhex): New custom group.
(binhex-decoder-program, binhex-decoder-switches) (binhex-use-external): Move to the binhex custom group.
This commit is contained in:
parent
b0a07187c1
commit
5b8178bbea
2 changed files with 20 additions and 3 deletions
|
|
@ -35,23 +35,28 @@
|
|||
'char-int
|
||||
'identity)))
|
||||
|
||||
(defgroup binhex nil
|
||||
"Decoding of BinHex (binary-to-hexadecimal) data."
|
||||
:group 'mail
|
||||
:group 'news)
|
||||
|
||||
(defcustom binhex-decoder-program "hexbin"
|
||||
"*Non-nil value should be a string that names a binhex decoder.
|
||||
The program should expect to read binhex data on its standard
|
||||
input and write the converted data to its standard output."
|
||||
:type 'string
|
||||
:group 'gnus-extract)
|
||||
:group 'binhex)
|
||||
|
||||
(defcustom binhex-decoder-switches '("-d")
|
||||
"*List of command line flags passed to the command `binhex-decoder-program'."
|
||||
:group 'gnus-extract
|
||||
:group 'binhex
|
||||
:type '(repeat string))
|
||||
|
||||
(defcustom binhex-use-external
|
||||
(executable-find binhex-decoder-program)
|
||||
"*Use external binhex program."
|
||||
:version "22.1"
|
||||
:group 'gnus-extract
|
||||
:group 'binhex
|
||||
:type 'boolean)
|
||||
|
||||
(defconst binhex-alphabet-decoding-alist
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue