+2007-09-04 Didier Verna <didier@xemacs.org>
+
+ * riece-addon.el (riece-addon-list-mark-face-alist): Fix misuse of
+ the list widget type.
+ * riece-google.el (riece-google-program): Ditto.
+ * riece-highlight.el (riece-channel-list-mark-face-alist): Ditto.
+ * riece-keyword.el (riece-notify-keyword-functions)
+ (riece-keyword-notify-functions): Ditto.
+ * riece-layout.el (riece-layout-alist): Ditto.
+ * riece-rdcc.el (riece-rdcc-send-program)
+ (riece-rdcc-decode-address-program): Ditto.
+
2007-08-19 Daiki Ueno <ueno@unixuser.org>
* riece-commands.el (riece-command-kick-with-ban): New command.
(?? . riece-addon-list-uninstalled-face)
(? . riece-addon-list-unloaded-face))
"An alist mapping marks on riece-addon-list-buffer to faces."
- :type 'list
+ :type '(repeat (cons character symbol))
:group 'riece-addon-list)
(defcustom riece-addon-list-font-lock-keywords
end
")
"Ruby program for searching by Google."
- :type 'list
+ :type 'sexp
:group 'riece-google)
(defcustom riece-google-license-key nil
(defcustom riece-channel-list-mark-face-alist
'((?* . riece-channel-list-current-face))
"An alist mapping marks on riece-channel-list-buffer to faces."
- :type 'list
+ :type '(repeat (cons character symbol))
:group 'riece-highlight)
(defcustom riece-channel-list-font-lock-keywords
(defcustom riece-notify-keyword-functions nil
"Functions used to notify keyword match."
- :type '(list function)
+ :type '(repeat function)
:group 'riece-keyword)
(make-obsolete-variable 'riece-notify-keyword-functions
"Functions used to notify keyword match.
Two arguments are passed to each function: the keyword used to match
and the matched message object."
- :type '(list function)
+ :type '(repeat function)
:group 'riece-keyword)
(defface riece-keyword-face
setting, and CONFIGURE-FUNCTION is a function which does window
splitting, etc. PARAMETERS are collected and passed to CONFIGURE-FUNCTION.
In the second form, NAME1 is an alias for NAME2."
- :type 'list
+ :type '(repeat (choice (list :tag "Layout"
+ (string :tag "Name")
+ (function :tag "Configure function")
+ (repeat :tag "Parameters" :inline t symbol))
+ (cons :tag "Alias" string string)))
:group 'riece-layout)
(defun riece-redraw-layout (&optional force)
end
")
"Ruby program to send file with DCC."
- :type 'list
+ :type 'sexp
:group 'riece-rdcc)
(defcustom riece-rdcc-decode-address-program
'("\"#{" address " >> 24 & 0xFF}.#{" address " >> 16 & 0xFF}.#{"
address " >> 8 & 0xFF}.#{" address " & 0xFF}\"")
"Ruby program to numeric IP address."
- :type 'list
+ :type 'sexp
:group 'riece-rdcc)
(defcustom riece-rdcc-save-directory nil