Variable: world-clock-mode-map
world-clock-mode-map is a variable defined in time.el.gz.
Value
n next-line
p previous-line
Documentation
Keymap for world-clock-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/time.el.gz
(defvar world-clock-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "n" #'next-line)
(define-key map "p" #'previous-line)
map))