mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
; Don't mention erc-branded Compat macros in ERC-NEWS
* doc/misc/erc.texi: Change fancy SASL example to also demonstrate `let'-binding a local module. * etc/ERC-NEWS: Don't mention `erc-compat-call' and `erc-compat-function' because Emacs now ships with a compat.el stub library. * lisp/erc/erc-backend.el (erc-decode-parsed-server-response): Add comments. * lisp/erc/erc.el (erc): Mention return value.
This commit is contained in:
parent
8d5983aa78
commit
56706254a8
4 changed files with 24 additions and 18 deletions
|
|
@ -1479,10 +1479,12 @@ for decoding."
|
|||
(let ((args (erc-response.command-args parsed-response))
|
||||
(decode-target nil)
|
||||
(decoded-args ()))
|
||||
;; FIXME this should stop after the first match.
|
||||
(dolist (arg args nil)
|
||||
(when (string-match "^[#&].*" arg)
|
||||
(setq decode-target arg)))
|
||||
(when (stringp decode-target)
|
||||
;; FIXME `decode-target' should be passed as TARGET.
|
||||
(setq decode-target (erc-decode-string-from-target decode-target nil)))
|
||||
(setf (erc-response.unparsed parsed-response)
|
||||
(erc-decode-string-from-target
|
||||
|
|
|
|||
|
|
@ -2772,8 +2772,9 @@ PORT, NICK, and PASSWORD, along with USER and FULL-NAME when
|
|||
given a prefix argument. Non-interactively, expect the rarely
|
||||
needed ID parameter, when non-nil, to be a symbol or a string for
|
||||
naming the server buffer and identifying the connection
|
||||
unequivocally. (See Info node `(erc) Connecting' for details
|
||||
about all mentioned parameters.)
|
||||
unequivocally. Once connected, return the server buffer. (See
|
||||
Info node `(erc) Connecting' for details about all mentioned
|
||||
parameters.)
|
||||
|
||||
Together with `erc-tls', this command serves as the main entry
|
||||
point for ERC, the powerful, modular, and extensible IRC client.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue