(zenirc, zenirc-send-line): Declare as functions.

This commit is contained in:
Glenn Morris 2007-11-29 04:35:08 +00:00
parent 132d5910a0
commit 0bd90741d6
3 changed files with 41 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2007-11-29 Glenn Morris <rgm@gnu.org>
* url-file.el (url-file-build-filename, url-file): Wrap uses of
efs in (featurep 'xemacs) test.
* url-irc.el (zenirc, zenirc-send-line): Declare as functions.
2007-11-28 Diane Murray <disumu@x3y2z1.net>
* url-dired.el: Don't require w3-fetch and w3-open-local.

View file

@ -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)