summaryrefslogtreecommitdiff
path: root/lisp/mail/hashcash.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-09-22 13:46:45 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-09-22 14:05:33 +0200
commit5ee3990de69f95cd0e44a900b27a69f046a41c27 (patch)
treeec4c5b77c2dbba102d323b7b785933332296a917 /lisp/mail/hashcash.el
parent4cb53c0528aad73ac001a5d0b4ae336b8ec65408 (diff)
downloademacs-5ee3990de69f95cd0e44a900b27a69f046a41c27.tar.gz
emacs-5ee3990de69f95cd0e44a900b27a69f046a41c27.tar.bz2
emacs-5ee3990de69f95cd0e44a900b27a69f046a41c27.zip
; * lisp/mail/hashcash.el: Remove redundant :group args.
Diffstat (limited to 'lisp/mail/hashcash.el')
-rw-r--r--lisp/mail/hashcash.el24
1 files changed, 8 insertions, 16 deletions
diff --git a/lisp/mail/hashcash.el b/lisp/mail/hashcash.el
index eebb140088e..626949b6632 100644
--- a/lisp/mail/hashcash.el
+++ b/lisp/mail/hashcash.el
@@ -57,8 +57,7 @@
"The default number of bits to pay to unknown users.
If this is zero, no payment header will be generated.
See `hashcash-payment-alist'."
- :type 'natnum
- :group 'hashcash)
+ :type 'natnum)
(defcustom hashcash-payment-alist '()
"An association list mapping email addresses to payment amounts.
@@ -72,46 +71,39 @@ present, is the string to be hashed; if not present ADDR will be used."
(list :tag "Replace hash input"
(string :name "Address")
(string :name "Hash input")
- (integer :name "Amount"))))
- :group 'hashcash)
+ (integer :name "Amount")))))
(defcustom hashcash-default-accept-payment 20
"The default minimum number of bits to accept on incoming payments."
- :type 'natnum
- :group 'hashcash)
+ :type 'natnum)
(defcustom hashcash-accept-resources `((,user-mail-address nil))
"An association list mapping hashcash resources to payment amounts.
Resources named here are to be accepted in incoming payments. If the
corresponding AMOUNT is NIL, the value of `hashcash-default-accept-payment'
is used instead."
- :type 'alist
- :group 'hashcash)
+ :type 'alist)
(define-obsolete-variable-alias 'hashcash-path 'hashcash-program "24.4")
(defcustom hashcash-program "hashcash"
"The name of the hashcash executable.
If this is not in your PATH, specify an absolute file name."
- :type '(choice (const nil) file)
- :group 'hashcash)
+ :type '(choice (const nil) file))
(defcustom hashcash-extra-generate-parameters '("-Z2")
"A list of parameter strings passed to `hashcash-program' when minting.
For example, on very old hardware, you may want to set this
to (\"-Z0\") to disable compression."
:type '(repeat string)
- :version "29.1"
- :group 'hashcash)
+ :version "29.1")
(defcustom hashcash-double-spend-database "hashcash.db"
"The name of the double-spending database file."
- :type 'file
- :group 'hashcash)
+ :type 'file)
(defcustom hashcash-in-news nil
"Specifies whether or not hashcash payments should be made to newsgroups."
- :type 'boolean
- :group 'hashcash)
+ :type 'boolean)
(defvar hashcash-process-alist nil
"Alist of asynchronous hashcash processes and buffers.")