|
From: Andreas S. <sc...@su...> - 2004-05-05 20:01:47
|
This fixes the generation of the info buffers. Index: erc.el =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/erc/erc/erc.el,v retrieving revision 1.655 diff -u -a -p -a -u -p -r1.655 erc.el --- erc.el 5 May 2004 18:47:54 -0000 1.655 +++ erc.el 5 May 2004 19:06:30 -0000 @@ -6560,10 +6560,12 @@ For example, topic, modes, user limit." (when (and chnl chnl-buf info-buf) (set-buffer chnl-buf) (maphash (lambda (nick channel-data) - (setq names (cons channel-data names)))) - (sort names (lambda (x y) - (string< (erc-server-user-nickname (car x)) - (erc-server-user-nickname (car y))))) + (setq names (cons channel-data names))) + erc-channel-users) + (setq names + (sort names (lambda (x y) + (string< (erc-server-user-nickname (car x)) + (erc-server-user-nickname (car y)))))) (setq topic (and (boundp 'channel-topic) channel-topic) modes (and (boundp 'channel-modes) channel-modes) limit (and (boundp 'channel-user-limit) channel-user-limit) Andreas. --=20 Andreas Schwab, SuSE Labs, sc...@su... SuSE Linux AG, Maxfeldstra=C3=9Fe 5, 90409 N=C3=BCrnberg, Germany Key fingerprint =3D 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." |