From: Benjamin D. <Ben...@al...> - 2001-11-07 14:01:01
|
Here is a small patch against erc.el 1.92 that corrects a minor problem. There *does* exist women on IRC, but ERC doesn't seem to know that. Seeing a friend ``renaming himself'' every time she changes her nick really shocked me ;-). So I changed the NICK notice to ``is now known as'' (à la xchat) and added a timestamp that was missing. Hope this helps. -- o Benjamin Drieu: Ben...@fr... bd...@ap... o Alcove: http://www.alcove.com/ o APRIL: http://www.april.org/ ===File ~/erc-1.92.diff===================================== --- erc-1.92.el Wed Nov 7 14:48:44 2001 +++ erc.el Wed Nov 7 14:46:50 2001 @@ -3286,7 +3286,10 @@ (list nick login host) (list nn)) (cons (erc-make-notice - (format "%s (%s@%s) has renamed himself to %s" + (format "%s%s (%s@%s) is now known as %s" + (if erc-timestamp-format + (format-time-string erc-timestamp-format + (current-time)) "") nick login host nn)) bufs))))) @@ -3312,7 +3315,10 @@ (list nick nil nil) (list nn)) (cons (erc-make-notice - (format "%s (%s@%s) has renamed himself to %s" + (format "%s%s (%s@%s) is now known as %s" + (if erc-timestamp-format + (format-time-string erc-timestamp-format + (current-time)) "") nick "???" "???" nn)) bufs))))) ============================================================ |