Changes committed gnus/lisp (ChangeLog auth-source.el)

"Ted Zlatanov" <[email protected]> Tue, 23 Mar 2010 03:54:14 +0100
Newsgroups gmane.emacs.gnus.commits
Message-ID <[email protected]>
Modified: ChangeLog auth-source.el

(auth-sources): Fix up definition so extra parameters
are always inline.


Index: ChangeLog
diff -u gnus/lisp/ChangeLog:7.2071 gnus/lisp/ChangeLog:7.2072
--- ChangeLog:7.2071	Mon Mar 22 11:58:48 2010
+++ ChangeLog	Tue Mar 23 03:54:14 2010
@@ -1,3 +1,8 @@
+2010-03-23  Teodor Zlatanov  <[email protected]>
+
+	* auth-source.el (auth-sources): Fix up definition so extra parameters
+	are always inline.
+
 2010-03-22  Martin Stjernholm <[email protected]>
 
 	* nnimap.el (nnimap-verify-uidvalidity): Fixed bug where uidvalidity
Index: auth-source.el
diff -u gnus/lisp/auth-source.el:7.19 gnus/lisp/auth-source.el:7.20
--- auth-source.el:7.19	Sat Mar 20 21:35:24 2010
+++ auth-source.el	Tue Mar 23 03:54:14 2010
@@ -103,7 +103,7 @@
   :version "23.2" ;; No Gnus
   :type `boolean)
 
-(defcustom auth-sources '((:source "~/.authinfo.gpg" :host t :protocol t nil))
+(defcustom auth-sources '((:source "~/.authinfo.gpg" :host t :protocol t))
   "List of authentication sources.
 
 Each entry is the authentication type with optional properties.
@@ -136,9 +136,9 @@
 			       (const :tag "Any" t)
 			       (const :tag "Fallback" nil)
 			       ,@auth-source-protocols-customize)
-		       (repeat :tag "Extra Parameters"
+		       (repeat :tag "Extra Parameters" :inline t
 			       (choice :tag "Extra parameter"
-				       (list :tag "Preferred username"
+				       (list :tag "Preferred username" :inline t
 					     (const :format "" :value :preferred-username)
 					     (choice :tag "Personality or username"
 						     (const :tag "Any" t)