Synch to No Gnus 200412160112.
authoryamaoka <yamaoka>
Thu, 16 Dec 2004 01:15:34 +0000 (01:15 +0000)
committeryamaoka <yamaoka>
Thu, 16 Dec 2004 01:15:34 +0000 (01:15 +0000)
lisp/ChangeLog
lisp/hashcash.el

index 5498934..417c6ac 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-16  Simon Josefsson  <jas@extundo.com>
+
+       * hashcash.el (hashcash-payment-alist): Fix custom :type.
+
 2004-12-15  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * mm-url.el (mm-url-predefined-programs): Add --silent arg to curl.
index c0a799d..68a5cfd 100644 (file)
@@ -63,7 +63,14 @@ See `hashcash-payment-alist'."
 Elements may consist of (ADDR AMOUNT) or (ADDR STRING AMOUNT), where
 ADDR is the email address of the intended recipient and AMOUNT is
 the value of hashcash payment to be made to that user.  STRING, if
-present, is the string to be hashed; if not present ADDR will be used.")
+present, is the string to be hashed; if not present ADDR will be used."
+  :type '(repeat (choice (list :tag "Normal"
+                              (string :name "Address")
+                              (integer :name "Amount"))
+                        (list :tag "Replace hash input"
+                              (string :name "Address")
+                              (string :name "Hash input")
+                              (integer :name "Amount")))))
 
 (defcustom hashcash-default-accept-payment 20
   "*The default minimum number of bits to accept on incoming payments."