From: Tim Vaughan Date: Wed, 30 Jun 2021 15:45:53 +0000 (+0200) Subject: Fixed broken ref to old variable name. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=lurk.git;a=commitdiff_plain;h=339375f4b2769d4d7efb5d14dfb0b8e8da073ef8 Fixed broken ref to old variable name. --- diff --git a/lurk.el b/lurk.el index 697c937..becfff1 100644 --- a/lurk.el +++ b/lurk.el @@ -525,8 +525,8 @@ portion of the source component of the message, as LURK doesn't use this.") ("NICK" (let ((old-nick (lurk-msg-src msg)) (new-nick (car (lurk-msg-params msg)))) - (lurk-display-notice nil nick " is now known as " new-nick) - (lurk-rename-user nick new-nick))) + (lurk-display-notice nil old-nick " is now known as " new-nick) + (lurk-rename-user old-nick new-nick))) ("NOTICE" (let ((nick (lurk-msg-src msg))