Variable: erc-timestamp-format-right

erc-timestamp-format-right is a customizable variable defined in erc-stamp.el.gz.

This variable is obsolete since 30.1; use erc-timestamp-format instead.

Value

nil

Documentation

If set to a string, messages will be timestamped.

This string is processed using format-time-string. Good examples are "%T" and "%H:%M".

This timestamp is used for timestamps on the right side of the screen when erc-insert-timestamp-function is set to erc-insert-timestamp-left-and-right.

Unlike erc-timestamp-format and erc-timestamp-format-left, if the value of this option is nil, it falls back to using the value of erc-timestamp-format.

This variable was added, or its default value changed, in ERC version
5.6.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-stamp.el.gz
(defcustom erc-timestamp-format-right nil
  "If set to a string, messages will be timestamped.
This string is processed using `format-time-string'.
Good examples are \"%T\" and \"%H:%M\".

This timestamp is used for timestamps on the right side of the
screen when `erc-insert-timestamp-function' is set to
`erc-insert-timestamp-left-and-right'.

Unlike `erc-timestamp-format' and `erc-timestamp-format-left', if
the value of this option is nil, it falls back to using the value
of `erc-timestamp-format'."
  :package-version '(ERC . "5.6")
  :type '(choice (const nil)
		 (string)))