Function: timeclock-reread-log

timeclock-reread-log is an autoloaded, interactive and byte-compiled function defined in timeclock.el.gz.

Signature

(timeclock-reread-log)

Documentation

Re-read the timeclock, to account for external changes.

Returns the new value of timeclock-discrepancy.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/timeclock.el.gz
;;;###autoload
(defun timeclock-reread-log ()
  "Re-read the timeclock, to account for external changes.
Returns the new value of `timeclock-discrepancy'."
  (interactive)
  (setq timeclock-discrepancy nil)
  (timeclock-find-discrep)
  (if (and timeclock-discrepancy timeclock-mode-line-display)
      (timeclock-update-mode-line))
  timeclock-discrepancy)