aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2007-11-15 18:36:38 +0000
committerJuanma Barranquero2007-11-15 18:36:38 +0000
commitfb70b793a8c91b7fffc1c7ea2aa8ac03a13604b4 (patch)
tree8e15b85c1f6c5123d04dc14939485c5c05d0001f
parentec77ae0a9ec78d58dd34470fbe5d581924d20b86 (diff)
downloademacs-fb70b793a8c91b7fffc1c7ea2aa8ac03a13604b4.tar.gz
emacs-fb70b793a8c91b7fffc1c7ea2aa8ac03a13604b4.zip
(define-erc-response-handler): Fix typos in docstring.
-rw-r--r--lisp/erc/erc-backend.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el
index 349f9137066..e03c8964ca3 100644
--- a/lisp/erc/erc-backend.el
+++ b/lisp/erc/erc-backend.el
@@ -1000,13 +1000,13 @@ NAME is the response name as sent by the server (see the IRC RFC for
1000meanings). 1000meanings).
1001 1001
1002This creates: 1002This creates:
1003 - a hook variable `erc-server-NAME-functions' initialised to `erc-server-NAME'. 1003 - a hook variable `erc-server-NAME-functions' initialized to `erc-server-NAME'.
1004 - a function `erc-server-NAME' with body FN-BODY. 1004 - a function `erc-server-NAME' with body FN-BODY.
1005 1005
1006If ALIASES is non-nil, each alias in ALIASES is `defalias'ed to 1006If ALIASES is non-nil, each alias in ALIASES is `defalias'ed to
1007`erc-server-NAME'. 1007`erc-server-NAME'.
1008Alias hook variables are created as `erc-server-ALIAS-functions' and 1008Alias hook variables are created as `erc-server-ALIAS-functions' and
1009initialised to the same default value as `erc-server-NAME-functions'. 1009initialized to the same default value as `erc-server-NAME-functions'.
1010 1010
1011FN-BODY is the body of `erc-server-NAME' it may refer to the two 1011FN-BODY is the body of `erc-server-NAME' it may refer to the two
1012function arguments PROC and PARSED. 1012function arguments PROC and PARSED.