Function: rcirc-channel-p
rcirc-channel-p is a byte-compiled function defined in rcirc.el.gz.
Signature
(rcirc-channel-p TARGET)
Documentation
Return t if TARGET is a channel name.
Source Code
;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-channel-p (target)
"Return t if TARGET is a channel name."
(and target
(not (zerop (length target)))
(or (eq (aref target 0) ?#)
(eq (aref target 0) ?&))))