Function: erc--shuffle-nuh-nickward
erc--shuffle-nuh-nickward is a byte-compiled function defined in
erc.el.gz.
Signature
(erc--shuffle-nuh-nickward NICK LOGIN HOST)
Documentation
Interpret results of erc--parse-nuh, promoting loners to nicks.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc--shuffle-nuh-nickward (nick login host)
"Interpret results of `erc--parse-nuh', promoting loners to nicks."
(cond (nick (cl-assert (null login)) (list nick login host))
((and (null login) host) (list host nil nil))
((and login (null host)) (list login nil nil))))