summaryrefslogtreecommitdiff
path: root/lisp/mail/uudecode.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-12-02 18:51:38 +0000
committerGlenn Morris <rgm@gnu.org>2007-12-02 18:51:38 +0000
commit1ac4605f391e3827a77b17d3e9d2c80f7fe90f03 (patch)
tree5984ecf2dfb693cd0e3d77d281eeea0da8bbfe60 /lisp/mail/uudecode.el
parent5b8178bbea505c34691977477653ffe66cf7d370 (diff)
downloademacs-1ac4605f391e3827a77b17d3e9d2c80f7fe90f03.tar.gz
(uudecode): New custom group.
(uudecode-decoder-program, uudecode-decoder-switches) (uudecode-use-external): Move to the uudecode custom group.
Diffstat (limited to 'lisp/mail/uudecode.el')
-rw-r--r--lisp/mail/uudecode.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/mail/uudecode.el b/lisp/mail/uudecode.el
index 74abeff6621..9dc430e825d 100644
--- a/lisp/mail/uudecode.el
+++ b/lisp/mail/uudecode.el
@@ -35,23 +35,28 @@
'char-int
'identity)))
+(defgroup uudecode nil
+ "Decoding of uuencoded data."
+ :group 'mail
+ :group 'news)
+
(defcustom uudecode-decoder-program "uudecode"
"*Non-nil value should be a string that names a uu decoder.
The program should expect to read uu data on its standard
input and write the converted data to its standard output."
:type 'string
- :group 'gnus-extract)
+ :group 'uudecode)
(defcustom uudecode-decoder-switches nil
"*List of command line flags passed to `uudecode-decoder-program'."
- :group 'gnus-extract
+ :group 'uudecode
:type '(repeat string))
(defcustom uudecode-use-external
(executable-find uudecode-decoder-program)
"*Use external uudecode program."
:version "22.1"
- :group 'gnus-extract
+ :group 'uudecode
:type 'boolean)
(defconst uudecode-alphabet "\040-\140")