]> code.delx.au - gnu-emacs/commitdiff
(binhex): New custom group.
authorGlenn Morris <rgm@gnu.org>
Sun, 2 Dec 2007 18:51:27 +0000 (18:51 +0000)
committerGlenn Morris <rgm@gnu.org>
Sun, 2 Dec 2007 18:51:27 +0000 (18:51 +0000)
(binhex-decoder-program, binhex-decoder-switches)
(binhex-use-external): Move to the binhex custom group.

lisp/ChangeLog
lisp/mail/binhex.el

index 1e038f2a86c5ab668fe0547f8d31f87d010c0eb1..c2d0a82932c0ca87a2e1faedc50022093c961c8c 100644 (file)
@@ -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
index 88f0e20f17cded0ac26a7c49d64ad2f1aae32b1f..c1d1316c82ea45e664362958907ef4bf3e9e78e5 100644 (file)
        '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