Changeset 202 for trunk


Ignore:
Timestamp:
04/28/07 14:14:23 (18 years ago)
Author:
Erik Huelsmann
Message:

Add missing CTCP primitive: ctcp-reply.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/command.lisp

    r169 r202  
    5959(defgeneric ison (connection user))
    6060(defgeneric ctcp (connection target message))
     61(defgeneric ctcp-reply (connection target message))
    6162(defgeneric ctcp-chat-initiate (connection nickname))
    6263
     
    349350  (send-irc-message connection :privmsg target (make-ctcp-message message)))
    350351
     352(defmethod ctcp-reply ((connection connection) target message)
     353  (send-irc-message connection :notice target (make-ctcp-message message)))
     354
    351355#|
    352356There's too much wrong with this method to fix it now.
Note: See TracChangeset for help on using the changeset viewer.