From f1df043ed13e1dff63ebaf8c994b2172e7bf910b Mon Sep 17 00:00:00 2001 From: plugd Date: Thu, 31 Aug 2023 22:27:18 +0200 Subject: [PATCH] /nick command bugfix --- lurk.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lurk.el b/lurk.el index 1e09ee1..52ee3b6 100644 --- a/lurk.el +++ b/lurk.el @@ -990,8 +990,8 @@ in which case they match anything.") (if new-nick (if (lurk-connected-p) (lurk-send-msg (lurk-msg nil nil "NICK" new-nick)) - (setq lurk-nick nick) - (lurk-display-notice nil "Set default nick to '" nick "'.")) + (setq lurk-nick new-nick) + (lurk-display-notice nil "Set default nick to '" lurk-nick "'.")) (lurk-display-notice nil "Current nick: " lurk-nick)))) (defun lurk-command-me (params) -- 2.20.1