Function: next-error-this-buffer-no-select

next-error-this-buffer-no-select is an interactive and byte-compiled function defined in simple.el.gz.

Signature

(next-error-this-buffer-no-select &optional N)

Documentation

Move point to the next error in the current buffer and highlight match.

Prefix arg N says how many error messages to move forwards (or backwards, if negative). Finds and highlights the source line like C-x ` (next-error), but does not select the source buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun next-error-this-buffer-no-select (&optional n)
  "Move point to the next error in the current buffer and highlight match.
Prefix arg N says how many error messages to move forwards (or
backwards, if negative).
Finds and highlights the source line like \\[next-error], but does not
select the source buffer."
  (interactive "p")
  (next-error-select-buffer (current-buffer))
  (next-error-no-select n))