Function: erc-cmd-OPME
erc-cmd-OPME is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-OPME)
Documentation
Ask ChanServ to op the current nick in the current channel.
This command assumes a ChanServ (channel service) available on the IRC network which accepts an "op" command that takes the channel name and the user's nick, and that the current nick is allowed to become an operator in the current channel (typically means that the user has a +o flag in the channel's access list).
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-OPME ()
"Ask ChanServ to op the current nick in the current channel.
This command assumes a ChanServ (channel service) available on
the IRC network which accepts an \"op\" command that takes the
channel name and the user's nick, and that the current nick is
allowed to become an operator in the current channel (typically
means that the user has a +o flag in the channel's access list)."
(erc-message "PRIVMSG"
(format "ChanServ op %s %s"
(erc-default-target)
(erc-current-nick))
nil))