aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReiner Steib2007-01-06 13:27:53 +0000
committerReiner Steib2007-01-06 13:27:53 +0000
commit40e902eb185d19534eff62af9333be781fd27aa9 (patch)
treef92c14cda48157458f8b9775ef776587ca5def26
parenta91087291d5d82f1dd15d4f0c3e968cf2b16b026 (diff)
downloademacs-40e902eb185d19534eff62af9333be781fd27aa9.tar.gz
emacs-40e902eb185d19534eff62af9333be781fd27aa9.zip
Add missing :group in previous change.
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-soup.el24
2 files changed, 20 insertions, 8 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index ec7476b8758..0b686410943 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12007-01-06 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * gnus-soup.el: Add missing :group in previous change.
4
12007-01-05 Reiner Steib <Reiner.Steib@gmx.de> 52007-01-05 Reiner Steib <Reiner.Steib@gmx.de>
2 6
3 * gnus-soup.el (gnus-soup): New custom group. Make user variables 7 * gnus-soup.el (gnus-soup): New custom group. Make user variables
diff --git a/lisp/gnus/gnus-soup.el b/lisp/gnus/gnus-soup.el
index 31074cb8c77..d5b1a9fad88 100644
--- a/lisp/gnus/gnus-soup.el
+++ b/lisp/gnus/gnus-soup.el
@@ -45,18 +45,21 @@
45(defcustom gnus-soup-directory (nnheader-concat gnus-home-directory "SoupBrew/") 45(defcustom gnus-soup-directory (nnheader-concat gnus-home-directory "SoupBrew/")
46 "Directory containing an unpacked SOUP packet." 46 "Directory containing an unpacked SOUP packet."
47 :version "22.1" ;; Gnus 5.10.9 47 :version "22.1" ;; Gnus 5.10.9
48 :type 'directory) 48 :type 'directory
49 :group 'gnus-soup)
49 50
50(defcustom gnus-soup-replies-directory 51(defcustom gnus-soup-replies-directory
51 (nnheader-concat gnus-soup-directory "SoupReplies/") 52 (nnheader-concat gnus-soup-directory "SoupReplies/")
52 "Directory where Gnus will do processing of replies." 53 "Directory where Gnus will do processing of replies."
53 :version "22.1" ;; Gnus 5.10.9 54 :version "22.1" ;; Gnus 5.10.9
54 :type 'directory) 55 :type 'directory
56 :group 'gnus-soup)
55 57
56(defcustom gnus-soup-prefix-file "gnus-prefix" 58(defcustom gnus-soup-prefix-file "gnus-prefix"
57 "Name of the file where Gnus stores the last used prefix." 59 "Name of the file where Gnus stores the last used prefix."
58 :version "22.1" ;; Gnus 5.10.9 60 :version "22.1" ;; Gnus 5.10.9
59 :type 'file) 61 :type 'file
62 :group 'gnus-soup)
60 63
61(defcustom gnus-soup-packer "tar cf - %s | gzip > $HOME/Soupout%d.tgz" 64(defcustom gnus-soup-packer "tar cf - %s | gzip > $HOME/Soupout%d.tgz"
62 "Format string command for packing a SOUP packet. 65 "Format string command for packing a SOUP packet.
@@ -64,28 +67,33 @@ The SOUP files will be inserted where the %s is in the string.
64This string MUST contain both %s and %d. The file number will be 67This string MUST contain both %s and %d. The file number will be
65inserted where %d appears." 68inserted where %d appears."
66 :version "22.1" ;; Gnus 5.10.9 69 :version "22.1" ;; Gnus 5.10.9
67 :type 'string) 70 :type 'string
71 :group 'gnus-soup)
68 72
69(defcustom gnus-soup-unpacker "gunzip -c %s | tar xvf -" 73(defcustom gnus-soup-unpacker "gunzip -c %s | tar xvf -"
70 "Format string command for unpacking a SOUP packet. 74 "Format string command for unpacking a SOUP packet.
71The SOUP packet file name will be inserted at the %s." 75The SOUP packet file name will be inserted at the %s."
72 :version "22.1" ;; Gnus 5.10.9 76 :version "22.1" ;; Gnus 5.10.9
73 :type 'string) 77 :type 'string
78 :group 'gnus-soup)
74 79
75(defcustom gnus-soup-packet-directory gnus-home-directory 80(defcustom gnus-soup-packet-directory gnus-home-directory
76 "Where gnus-soup will look for REPLIES packets." 81 "Where gnus-soup will look for REPLIES packets."
77 :version "22.1" ;; Gnus 5.10.9 82 :version "22.1" ;; Gnus 5.10.9
78 :type 'directory) 83 :type 'directory
84 :group 'gnus-soup)
79 85
80(defcustom gnus-soup-packet-regexp "Soupin" 86(defcustom gnus-soup-packet-regexp "Soupin"
81 "Regular expression matching SOUP REPLIES packets in `gnus-soup-packet-directory'." 87 "Regular expression matching SOUP REPLIES packets in `gnus-soup-packet-directory'."
82 :version "22.1" ;; Gnus 5.10.9 88 :version "22.1" ;; Gnus 5.10.9
83 :type 'regexp) 89 :type 'regexp
90 :group 'gnus-soup)
84 91
85(defcustom gnus-soup-ignored-headers "^Xref:" 92(defcustom gnus-soup-ignored-headers "^Xref:"
86 "Regexp to match headers to be removed when brewing SOUP packets." 93 "Regexp to match headers to be removed when brewing SOUP packets."
87 :version "22.1" ;; Gnus 5.10.9 94 :version "22.1" ;; Gnus 5.10.9
88 :type 'regexp) 95 :type 'regexp
96 :group 'gnus-soup)
89 97
90;;; Internal Variables: 98;;; Internal Variables:
91 99