diff options
author | Glenn Morris <rgm@gnu.org> | 2007-11-29 04:35:08 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-11-29 04:35:08 +0000 |
commit | 0bd90741d61d62c23d951901ce97e488116985b1 (patch) | |
tree | 17ff0d929fca03c875b047943d59ad437f0d3e92 /lisp/url/url-irc.el | |
parent | 132d5910a04491bac9326bc89ed7401855a84777 (diff) | |
download | emacs-0bd90741d61d62c23d951901ce97e488116985b1.tar.gz |
(zenirc, zenirc-send-line): Declare as functions.
Diffstat (limited to 'lisp/url/url-irc.el')
-rw-r--r-- | lisp/url/url-irc.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index 0cefb375bf3..2c3155e49ce 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -47,6 +47,10 @@ PASSWORD - What password to use" (function :tag "Other")) :group 'url) +;; External. +(declare-function zenirc "ext:zenirc" (&optional prefix)) +(declare-function zenirc-send-line "ext:zenirc" ()) + (defun url-irc-zenirc (host port channel user password) (let ((zenirc-buffer-name (if (and user host port) (format "%s@%s:%d" user host port) |