emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/mail/binhex.el,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/mail/binhex.el,v
Date: Sun, 02 Dec 2007 18:50:43 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       07/12/02 18:50:42

Index: binhex.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/mail/binhex.el,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- binhex.el   2 Dec 2007 18:49:22 -0000       1.1
+++ binhex.el   2 Dec 2007 18:50:42 -0000       1.2
@@ -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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]