From 339375f4b2769d4d7efb5d14dfb0b8e8da073ef8 Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Wed, 30 Jun 2021 17:45:53 +0200 Subject: [PATCH] Fixed broken ref to old variable name. --- lurk.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.20.1