diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-11-15 16:46:01 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-11-15 16:46:01 +0000 |
commit | 8e663c3bac5351a970bbb86c7d02c958e77915e3 (patch) | |
tree | 2d624a80ca71b90add32c6517adcdd66f2a3f32c /lisp/erc | |
parent | 2c5a057564fe0003f70f0c103df3db126384e73c (diff) | |
download | emacs-8e663c3bac5351a970bbb86c7d02c958e77915e3.tar.gz |
(define-erc-response-handler): Fix typos in docstring.
Diffstat (limited to 'lisp/erc')
-rw-r--r-- | lisp/erc/erc-backend.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/erc/erc-backend.el b/lisp/erc/erc-backend.el index 4e250490e9c..5b4e79fda32 100644 --- a/lisp/erc/erc-backend.el +++ b/lisp/erc/erc-backend.el @@ -1018,13 +1018,13 @@ NAME is the response name as sent by the server (see the IRC RFC for meanings). This creates: - - a hook variable `erc-server-NAME-functions' initialised to `erc-server-NAME'. + - a hook variable `erc-server-NAME-functions' initialized to `erc-server-NAME'. - a function `erc-server-NAME' with body FN-BODY. If ALIASES is non-nil, each alias in ALIASES is `defalias'ed to `erc-server-NAME'. Alias hook variables are created as `erc-server-ALIAS-functions' and -initialised to the same default value as `erc-server-NAME-functions'. +initialized to the same default value as `erc-server-NAME-functions'. FN-BODY is the body of `erc-server-NAME' it may refer to the two function arguments PROC and PARSED. |