X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=blobdiff_plain;f=murk.el;h=ffe10e6d0e2da03645e8c9104f61f84898532130;hb=af0002ab9d15c31a8286dcbd8335e0637eae5d9c;hp=035c358118d7ce52e65cdbad4b7e354789900f35;hpb=606ea58e42a37ccf3c5c35c5613ee7e175e20083;p=lurk.git diff --git a/murk.el b/murk.el index 035c358..ffe10e6 100644 --- a/murk.el +++ b/murk.el @@ -632,6 +632,18 @@ The head of this list is always the current context.") " users in " channel) (murk-display-notice nil "End of " channel " names list.")))) + ("331" + (let* ((params (murk-msg-params msg)) + (channel (elt params 1)) + (ctx (murk-get-context server channel))) + (murk-display-notice ctx "No topic set."))) + + ("332" + (let* ((params (murk-msg-params msg)) + (channel (elt params 1)) + (topic (elt params 2)) + (ctx (murk-get-context server channel))) + (murk-display-notice ctx "Topic: " topic))) ((rx (= 3 (any digit))) (murk-display-notice nil (mapconcat 'identity (cdr (murk-msg-params msg)) " ")))