diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-07-02 11:14:38 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-07-02 11:14:38 +0000 |
commit | d1ce47b068062c1d6373e5add5abfbab0114ccb3 (patch) | |
tree | cd2ce3e726e040f880af239e1e6eb432fd6a75b8 /lisp/url/url-irc.el | |
parent | 1d344f142ac4bff89bc7f65e03af30c69afc449b (diff) | |
download | emacs-d1ce47b068062c1d6373e5add5abfbab0114ccb3.tar.gz |
Typo and docstring fixes.
* url.el (url-do-setup):
* url-dired.el (url-dired-minor-mode):
* url-file.el (url-file-find-possibly-compressed-file):
* url-gw.el (url-gateway-broken-resolution):
* url-handlers.el (url-handler-regexp):
* url-imap.el (url-imap-default-port):
* url-methods.el (url-scheme-get-property): Fix typos in docstrings.
* url-auth.el (url-basic-auth-storage, url-digest-auth):
Fix typos in docstrings.
(url-digest-auth-storage, url-register-auth-scheme): Reflow docstrings.
* url-cache.el (url-cache-prepare): Doc fix.
(url-cache-create-filename-human-readable, url-cache-extract):
Fix typos in docstrings.
* url-dav.el (url-intersection, url-dav-iso8601-regexp)
(url-dav-delete-something): Fix typos in docstrings.
(url-dav-http-success-p, url-dav-file-name-all-completions)
(url-dav-directory-files, url-dav-file-name-completion): Doc fixes.
* url-http.el (url-http-idle-sentinel): Doc fix.
* url-irc.el (url-irc-default-port): Fix typo in docstring.
(url-irc-function): Doc fix.
* url-util.el (url-get-url-filename-chars, url-unhex-string):
Fix typos in docstrings.
(url-file-extension): Doc fix.
* url-vars.el (url-current-object, url-current-mime-headers)
(url-privacy-level, url-mail-command, url-mime-language-string):
Fix typos in docstrings.
(url-honor-refresh-requests): Reflow docstring.
(url-using-proxy): Doc fix.
Diffstat (limited to 'lisp/url/url-irc.el')
-rw-r--r-- | lisp/url/url-irc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/url/url-irc.el b/lisp/url/url-irc.el index e4934e3e626..439ac4dbcbd 100644 --- a/lisp/url/url-irc.el +++ b/lisp/url/url-irc.el @@ -29,11 +29,11 @@ (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: +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) |