Function: rcirc-format-strike-through

rcirc-format-strike-through is an interactive and byte-compiled function defined in rcirc.el.gz.

Signature

(rcirc-format-strike-through REPLACE)

Documentation

Insert strike-through formatting.

If REPLACE is non-nil or a prefix argument is given, any prior formatting will be replaced before the strike-through formatting is inserted.

Key Bindings

Aliases

rcirc-format-strike-trough (obsolete since 30.1)

Source Code

;; Defined in /usr/src/emacs/lisp/net/rcirc.el.gz
(defun rcirc-format-strike-through (replace)
  "Insert strike-through formatting.
If REPLACE is non-nil or a prefix argument is given, any prior
formatting will be replaced before the strike-through formatting
is inserted."
  (interactive "P")
  (rcirc-format "\^^" replace))