Function: erc-unmorse-mode

erc-unmorse-mode is an autoloaded, interactive and byte-compiled function defined in erc-goodies.el.gz.

Signature

(erc-unmorse-mode &optional ARG)

Documentation

Toggle ERC unmorse mode.

If called interactively, enable erc-unmorse-mode(var)/erc-unmorse-mode(fun) 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
;;;###autoload(autoload 'erc-unmorse-mode "erc-goodies" nil t)
(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)))