Function: erc-nick-equal-p
erc-nick-equal-p is a byte-compiled function defined in erc.el.gz.
Signature
(erc-nick-equal-p NICK1 NICK2)
Documentation
Return non-nil if NICK1 and NICK2 are the same.
This matches strings according to the IRC protocol's case convention.
See also erc-downcase.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-nick-equal-p (nick1 nick2)
"Return non-nil if NICK1 and NICK2 are the same.
This matches strings according to the IRC protocol's case convention.
See also `erc-downcase'."
(string= (erc-downcase nick1)
(erc-downcase nick2)))