source: tags/pre_mode_tracking/package.lisp

Last change on this file was 78, checked in by Erik Huelsmann, 19 years ago

Export the CHANNEL symbol just as we do for the CONNECTION and USER symbols.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1;;;; $Id: package.lisp 78 2005-02-13 10:55:29Z ehuelsmann $
2;;;; $Source$
3
4;;;; See the LICENSE file for licensing information.
5
6(in-package :cl-user)
7
8;; the exports list needs some cleanup/clarification/categorization
9(eval-when (:execute :load-toplevel :compile-toplevel)
10  (defpackage :cl-irc
11      (:use :cl)
12    (:nicknames :irc)
13    (:export :read-message-loop
14             :read-message
15             :start-background-message-handler
16             :stop-background-message-handler
17             :socket-connect
18             :send-message
19             :server-name
20             :no-such-reply
21             :parse-raw-message
22             :normalize-nickname
23             :normalize-channel-name
24             :name
25             :normalized-name
26             :topic
27             :modes
28             :user-count
29             :users
30             :server-stream
31             :client-stream
32             :channels
33             :configuration
34             :dangling-users
35             :channel-list
36             :add-hook
37             :remove-hook
38             :remove-hooks
39             :remove-all-hooks
40             :add-default-hooks
41             :get-hooks
42             :make-user
43             :nickname
44             :normalized-nickname
45             :username
46             :hostname
47             :realname
48             :change-nickname
49             :irc-message
50             :source
51             :user
52             :host
53             :command
54             :arguments
55             :trailing-argument
56             :connection
57             :received-time
58             :raw-message-string
59             :make-connection
60             :make-channel
61             :channel
62             :client-log
63             :find-channel
64             :find-reply-name
65             :remove-channel
66             :remove-all-channels
67             :add-channel
68             :find-user
69             :add-user
70             :remove-all-users
71             :remove-user
72             :self-message-p
73             :pass
74             :nick
75             :user-
76             :oper
77             :mode
78             :op
79             :deop
80             :voice
81             :devoice
82             :ban
83             :unban
84             :service
85             :quit
86             :squit
87             :join
88             :part
89             :part-all
90             :topic-
91             :names
92             :list-
93             :invite
94             :kick
95             :privmsg
96             :notice
97             :motd-
98             :lusers
99             :version
100             :stats
101             :links
102             :time-
103             :connect
104             :trace-
105             :admin
106             :info
107             :servlist
108             :squery
109             :who
110             :whois
111             :whowas
112             :kill
113             :ping
114             :pong
115             :error-
116             :away
117             :rehash
118             :die
119             :restart-
120             :summon
121             :users-
122             :wallops
123             :userhost
124             :ison)))
125
Note: See TracBrowser for help on using the repository browser.