diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2019-06-09 17:05:15 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-06-09 17:07:09 -0700 |
commit | 4503310cac33da4da74fd6376244da82c7134432 (patch) | |
tree | 55596d1643c1dea1a30b1e42888aee0c101e78c7 /lisp/mail/uudecode.el | |
parent | 45c525a685041c274a26c70caed4088726a790de (diff) | |
download | emacs-4503310cac33da4da74fd6376244da82c7134432.tar.gz emacs-4503310cac33da4da74fd6376244da82c7134432.tar.bz2 emacs-4503310cac33da4da74fd6376244da82c7134432.zip |
Add tests for mail/uudecode.el
* lisp/mail/uudecode.el: Remove redundant :group usage.
* test/lisp/mail/uudecode-resources/uudecoded.txt,
test/lisp/mail/uudecode-resources/uuencoded.txt,
test/lisp/mail/uudecode-tests.el: New files.
Diffstat (limited to 'lisp/mail/uudecode.el')
-rw-r--r-- | lisp/mail/uudecode.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/mail/uudecode.el b/lisp/mail/uudecode.el index 32e668baab3..57ca1ccc629 100644 --- a/lisp/mail/uudecode.el +++ b/lisp/mail/uudecode.el @@ -38,19 +38,16 @@ "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 'uudecode) + :type 'string) (defcustom uudecode-decoder-switches nil "List of command line flags passed to `uudecode-decoder-program'." - :group 'uudecode :type '(repeat string)) (defcustom uudecode-use-external (executable-find uudecode-decoder-program) "Use external uudecode program." :version "22.1" - :group 'uudecode :type 'boolean) (defconst uudecode-alphabet "\040-\140") |