Function: erc-cmd-GMSG
erc-cmd-GMSG is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-GMSG LINE)
Documentation
Send LINE to all channels on all networks you are on.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-GMSG (line)
"Send LINE to all channels on all networks you are on."
(setq line (string-remove-prefix " " line))
(erc-with-all-buffers-of-server nil
#'erc--connected-and-joined-p
(erc-send-message line)))