diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-02 18:51:27 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-02 18:51:27 +0000 |
commit | 5b8178bbea505c34691977477653ffe66cf7d370 (patch) | |
tree | 0b38ba9f36807fa55e3f1c755293d4084c30b35b /lisp | |
parent | b0a07187c10af2ac905ee79eed8c50c7dd090b12 (diff) | |
download | emacs-5b8178bbea505c34691977477653ffe66cf7d370.tar.gz |
(binhex): New custom group.
(binhex-decoder-program, binhex-decoder-switches)
(binhex-use-external): Move to the binhex custom group.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 12 | ||||
-rw-r--r-- | lisp/mail/binhex.el | 11 |
2 files changed, 20 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 1e038f2a86c..c2d0a82932c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,15 @@ +2007-12-02 Glenn Morris <rgm@gnu.org> + + * mail/binhex.el: Move here from gnus/. + (binhex): New custom group. + (binhex-decoder-program, binhex-decoder-switches) + (binhex-use-external): Move to the binhex custom group. + + * mail/uudecode.el: Move here from gnus/. + (uudecode): New custom group. + (uudecode-decoder-program, uudecode-decoder-switches) + (uudecode-use-external): Move to the uudecode custom group. + 2007-12-02 Agustin Martin <agustin.martin@hispalinux.es> * textmodes/flyspell.el (flyspell-large-region): Explicitly set diff --git a/lisp/mail/binhex.el b/lisp/mail/binhex.el index 88f0e20f17c..c1d1316c82e 100644 --- a/lisp/mail/binhex.el +++ b/lisp/mail/binhex.el @@ -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 |