Function: erc-timestamp-offset

erc-timestamp-offset is a byte-compiled function defined in erc-fill.el.gz.

Signature

(erc-timestamp-offset)

Documentation

Get length of timestamp if inserted left.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-fill.el.gz
(defun erc-timestamp-offset ()
  "Get length of timestamp if inserted left."
  (if (and (boundp 'erc-timestamp-format)
           erc-timestamp-format
           (eq erc-insert-timestamp-function 'erc-insert-timestamp-left)
           (not erc-hide-timestamps))
      (length (format-time-string erc-timestamp-format))
    0))