Fixed broken ref to old variable name.
authorTim Vaughan <plugd@thelambdalab.xyz>
Wed, 30 Jun 2021 15:45:53 +0000 (17:45 +0200)
committerTim Vaughan <plugd@thelambdalab.xyz>
Wed, 30 Jun 2021 15:45:53 +0000 (17:45 +0200)
lurk.el

diff --git a/lurk.el b/lurk.el
index 697c937..becfff1 100644 (file)
--- 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))