From: TAKAHASHI Kaoru Date: Thu, 5 Jun 2008 03:06:44 +0000 (+0000) Subject: * riece-options.el (riece-server-alist): Fix :value for username, password, function... X-Git-Url: http://cgit.sxemacs.org/?p=riece;a=commitdiff_plain;h=cba1170f20b987b4663fa2b5a90d40b09293d0fc;hp=777d22f37f8371dc8dc8108dd7920c934c19f687 * riece-options.el (riece-server-alist): Fix :value for username, password, function and coding-system. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a6160c4..25100e1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2008-06-05 TAKAHASHI Kaoru + + * riece-options.el (riece-server-alist): Fix :value for username, + password, function and coding-system. + 2008-06-02 Daiki Ueno * riece.el (riece-read-variables-files): Re-evaluate custom settings. diff --git a/lisp/riece-options.el b/lisp/riece-options.el index 9e7b113..0d761c5 100644 --- a/lisp/riece-options.el +++ b/lisp/riece-options.el @@ -195,23 +195,23 @@ specifying the coding systems for decoding and encoding respectively." string)) (list :inline t :tag "Username" :format "%{%t%}: %v" - (const :tag "" :value :host) + (const :tag "" :value :username) (choice (const :tag "Default" riece-username) string)) (list :inline t :tag "Password" :format "%{%t%}: %v" - (const :tag "" :value :host) + (const :tag "" :value :password) string) (list :inline t :tag "Function" :format "%{%t%}: %v" - (const :tag "" :value :host) + (const :tag "" :value :function) (choice (const :tag "Default" riece-default-open-connection-function) function)) (list :inline t :tag "Coding system" :format "%{%t%}: %v" - (const :tag "" :value :host) + (const :tag "" :value :coding) (choice (const :tag "Default" riece-default-coding-system)