Function: world-clock-update

world-clock-update is a byte-compiled function defined in time.el.gz.

Signature

(world-clock-update &optional ARG NOCONFIRM)

Documentation

Update the world-clock buffer.

Probably introduced at or before Emacs version 28.1.

Aliases

display-time-world-timer (obsolete since 28.1)

Source Code

;; Defined in /usr/src/emacs/lisp/time.el.gz
(defun world-clock-update (&optional _arg _noconfirm)
  "Update the `world-clock' buffer."
  (if (get-buffer world-clock-buffer-name)
      (with-current-buffer world-clock-buffer-name
        (let ((op (point)))
          (world-clock-display (time--display-world-list))
          (goto-char op)))
    (world-clock-cancel-timer)))