Function: erc-unmorse-mode
erc-unmorse-mode is an interactive and byte-compiled function defined
in erc-goodies.el.gz.
Signature
(erc-unmorse-mode &optional ARG)
Documentation
Toggle ERC unmorse mode.
With a prefix argument ARG, enable unmorse if ARG is positive, and disable it otherwise. If called from Lisp, enable the mode if ARG is omitted or nil. This mode causes morse code in the current channel to be unmorsed.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
;; Unmorse
(define-erc-module unmorse nil
"This mode causes morse code in the current channel to be unmorsed."
((add-hook 'erc-insert-modify-hook #'erc-unmorse))
((remove-hook 'erc-insert-modify-hook #'erc-unmorse)))