aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-24 10:52:01 +0000
committerJuanma Barranquero2006-11-24 10:52:01 +0000
commit8c08b57a10443389b06f81d2e4825dbe2d3ca9e3 (patch)
treec1f4aea3350572e02cc88f132f490f4f18cb6989
parent655591a78d81acafb31cec3c48eebde5e4fe4bef (diff)
downloademacs-8c08b57a10443389b06f81d2e4825dbe2d3ca9e3.tar.gz
emacs-8c08b57a10443389b06f81d2e4825dbe2d3ca9e3.zip
(erc-after-connect, erc-open-ssl-stream, erc-display-line-1, erc-display-line):
Fix space/tab mixup in docstrings.
-rw-r--r--lisp/erc/erc.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index c65600ba446..7bffc43ee77 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2022,7 +2022,7 @@ parameters, SERVER, PORT and NICK."
2022 2022
2023(defcustom erc-after-connect nil 2023(defcustom erc-after-connect nil
2024 "Hook called after connecting to a server. 2024 "Hook called after connecting to a server.
2025This hook gets executed when an end of MOTD has been received. All 2025This hook gets executed when an end of MOTD has been received. All
2026functions in here get called with the parameters SERVER and NICK." 2026functions in here get called with the parameters SERVER and NICK."
2027 :group 'erc-hooks 2027 :group 'erc-hooks
2028 :type 'hook) 2028 :type 'hook)
@@ -2119,7 +2119,7 @@ Arguments are the same as for `erc'."
2119(defun erc-open-ssl-stream (name buffer host port) 2119(defun erc-open-ssl-stream (name buffer host port)
2120 "Open an SSL stream to an IRC server. 2120 "Open an SSL stream to an IRC server.
2121The process will be given the name NAME, its target buffer will be 2121The process will be given the name NAME, its target buffer will be
2122BUFFER. HOST and PORT specify the connection target." 2122BUFFER. HOST and PORT specify the connection target."
2123 (when (require 'tls) 2123 (when (require 'tls)
2124 (let ((proc (open-tls-stream name buffer host port))) 2124 (let ((proc (open-tls-stream name buffer host port)))
2125 ;; Ugly hack, but it works for now. Problem is it is 2125 ;; Ugly hack, but it works for now. Problem is it is
@@ -2236,7 +2236,7 @@ I.e. any char in it has the `invisible' property set."
2236 2236
2237(defun erc-display-line-1 (string buffer) 2237(defun erc-display-line-1 (string buffer)
2238 "Display STRING in `erc-mode' BUFFER. 2238 "Display STRING in `erc-mode' BUFFER.
2239Auxiliary function used in `erc-display-line'. The line gets filtered to 2239Auxiliary function used in `erc-display-line'. The line gets filtered to
2240interpret the control characters. Then, `erc-insert-pre-hook' gets called. 2240interpret the control characters. Then, `erc-insert-pre-hook' gets called.
2241If `erc-insert-this' is still t, STRING gets inserted into the buffer. 2241If `erc-insert-this' is still t, STRING gets inserted into the buffer.
2242Afterwards, `erc-insert-modify' and `erc-insert-post-hook' get called. 2242Afterwards, `erc-insert-modify' and `erc-insert-post-hook' get called.
@@ -2320,8 +2320,8 @@ or omitted, the default ERC buffer for the `erc-session-server' is used.
2320The BUFFER can be an actual buffer, a list of buffers, 'all or 'active. 2320The BUFFER can be an actual buffer, a list of buffers, 'all or 'active.
2321If BUFFER = 'all, the string is displayed in all the ERC buffers for the 2321If BUFFER = 'all, the string is displayed in all the ERC buffers for the
2322current session. 'active means the current active buffer 2322current session. 'active means the current active buffer
2323\(`erc-active-buffer'). If the buffer can't be resolved, the current 2323\(`erc-active-buffer'). If the buffer can't be resolved, the current
2324buffer is used. `erc-display-line-1' is used to display STRING. 2324buffer is used. `erc-display-line-1' is used to display STRING.
2325 2325
2326If STRING is nil, the function does nothing." 2326If STRING is nil, the function does nothing."
2327 (let ((inhibit-point-motion-hooks t) 2327 (let ((inhibit-point-motion-hooks t)