Function: erc-smiley

erc-smiley is a byte-compiled function defined in erc-goodies.el.gz.

Signature

(erc-smiley)

Documentation

Smilify a region.

This function should be used with erc-insert-modify-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
(defun erc-smiley ()
  "Smilify a region.
This function should be used with `erc-insert-modify-hook'."
  (when (fboundp 'smiley-region)
    (smiley-region (point-min) (point-max))))