Variable: next-error-repeat-map
next-error-repeat-map is a variable defined in bindings.el.gz.
Value
M-n next-error
M-p previous-error
n next-error
p previous-error
Documentation
Keymap to repeat next-error key sequences. Used in repeat-mode(var)/repeat-mode(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar next-error-repeat-map
(let ((map (make-sparse-keymap)))
(define-key map "n" 'next-error)
(define-key map "\M-n" 'next-error)
(define-key map "p" 'previous-error)
(define-key map "\M-p" 'previous-error)
map)
"Keymap to repeat `next-error' key sequences. Used in `repeat-mode'.")