From: Andreas S. <sc...@su...> - 2005-06-06 12:56:52
|
Calling format with a string that does not contain any format directives is pretty pointless. Andreas. 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.757 diff -u -a -p -u -p -a -r1.757 erc.el --- erc.el 4 Jun 2005 00:39:22 -0000 1.757 +++ erc.el 6 Jun 2005 12:54:23 -0000 @@ -3789,8 +3789,7 @@ The ban list is fetched from the server=20 =20 (cond ((not (erc-channel-p chnl)) - (erc-display-line (erc-make-notice - (format "You're not on a channel\n")) + (erc-display-line (erc-make-notice "You're not on a channel\n") 'active)) =20 ((not (get 'channel-banlist 'received-from-server)) @@ -3861,7 +3860,7 @@ Unban all currently banned users in the=20 =20 ((not (erc-channel-p chnl)) (erc-display-line - (erc-make-notice (format "You're not on a channel\n")) + (erc-make-notice "You're not on a channel\n") 'active)) =20 ((not (get 'channel-banlist 'received-from-server)) --=20 Andreas Schwab, SuSE Labs, sc...@su... SuSE Linux Products GmbH, Maxfeldstra=DFe 5, 90409 N=FCrnberg, Germany Key fingerprint =3D 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." |