X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/c1473b4cfeb477ced05d457868c5e1eb97a58eb0..7fd5a8435ff717b5b49832a96bc2575e46976ddf:/lisp/url/url-irc.el diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index e4934e3e62..b0622ebebe 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -1,7 +1,6 @@ ;;; url-irc.el --- IRC URL interface -;; Copyright (C) 1996, 1997, 1998, 1999, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1996-1999, 2004-2013 Free Software Foundation, Inc. ;; Keywords: comm, data, processes @@ -22,18 +21,19 @@ ;;; Commentary: -;; IRC URLs are defined in http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt +;; IRC URLs are defined in +;; http://www.w3.org/Addressing/draft-mirashi-url-irc-01.txt ;;; Code: (require 'url-vars) (require 'url-parse) -(defconst url-irc-default-port 6667 "Default port for IRC connections") +(defconst url-irc-default-port 6667 "Default port for IRC connections.") (defcustom url-irc-function 'url-irc-rcirc - "*Function to actually open an IRC connection. -Should be a function that takes several arguments: + "Function to actually open an IRC connection. +The function should take the following arguments: HOST - the hostname of the IRC server to contact PORT - the port number of the IRC server to contact CHANNEL - What channel on the server to visit right away (can be nil) @@ -90,5 +90,4 @@ PASSWORD - What password to use" (provide 'url-irc) -;; arch-tag: 2e5eecf8-9eb3-436b-9fbd-c26f2fb2bf3e ;;; url-irc.el ends here