]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/rcirc.el (rcirc-sort-nicknames): Remove.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 3 Jun 2010 17:22:27 +0000 (13:22 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 3 Jun 2010 17:22:27 +0000 (13:22 -0400)
(rcirc-handler-366): Always sort nicknames.

lisp/ChangeLog
lisp/net/rcirc.el

index d880905567ca53d28357504714b7ef7608f1b301..9c5d7349381246e5e742063601f92bf00f58429d 100644 (file)
@@ -1,3 +1,8 @@
+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.
index c45fdaaf8adb74e4ba29757c560a5821242e2ea7..7761bbc650ee77773e0377523a7bf4fde87890b2 100644 (file)
@@ -281,12 +281,6 @@ Called with 5 arguments, PROCESS, SENDER, RESPONSE, TARGET and TEXT."
   :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
@@ -2586,9 +2580,7 @@ keywords when no KEYWORD is given."
     (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)