From: Glenn Morris Date: Sun, 2 Dec 2007 18:51:38 +0000 (+0000) Subject: (uudecode): New custom group. X-Git-Tag: emacs-pretest-23.0.90~9155 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1ac4605f391e3827a77b17d3e9d2c80f7fe90f03;p=emacs.git (uudecode): New custom group. (uudecode-decoder-program, uudecode-decoder-switches) (uudecode-use-external): Move to the uudecode custom group. --- 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")