Function: erc-toggle-timestamps

erc-toggle-timestamps is an interactive and byte-compiled function defined in erc-stamp.el.gz.

Signature

(erc-toggle-timestamps)

Documentation

Hide or show timestamps in ERC buffers.

Note that timestamps can only be shown for a message using this function if erc-timestamp-format was set and timestamping was enabled when the message was inserted.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-stamp.el.gz
(defun erc-toggle-timestamps ()
  "Hide or show timestamps in ERC buffers.

Note that timestamps can only be shown for a message using this
function if `erc-timestamp-format' was set and timestamping was
enabled when the message was inserted."
  (interactive)
  (if erc-hide-timestamps
      (setq erc-hide-timestamps nil)
    (setq erc-hide-timestamps t))
  (mapc (lambda (buffer)
	  (with-current-buffer buffer
            (erc-stamp--manage-local-options-state)))
	(erc-buffer-list)))