+2010-06-03 Chong Yidong <cyd@stupidchicken.com>
+
+ * net/rcirc.el (rcirc-sort-nicknames): Remove.
+ (rcirc-handler-366): Always sort nicknames.
+
2010-06-03 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp/smie.el (comment-continue): Declare for byte-compiler.
:type 'hook
:group 'rcirc)
-;; Does this really merit a config variable?
-(defcustom rcirc-sort-nicknames t
- "If non-nil, sorts nickname listings."
- :type 'boolean
- :group 'rcirc)
-
(defcustom rcirc-always-use-server-buffer-flag nil
"Non-nil means messages without a channel target will go to the server buffer."
:type 'boolean
(with-current-buffer buffer
(rcirc-print process sender "NAMES" channel
(let ((content (buffer-substring (point-min) (point-max))))
- (if rcirc-sort-nicknames
- (rcirc-sort-nicknames-join content " ")
- content))))
+ (rcirc-sort-nicknames-join content " "))))
(kill-buffer buffer)))
(defun rcirc-handler-433 (process sender args text)