Function: previous-error-this-buffer-no-select
previous-error-this-buffer-no-select is an interactive and
byte-compiled function defined in simple.el.gz.
Signature
(previous-error-this-buffer-no-select &optional N)
Documentation
Move point to the previous 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 M-g p (previous-error), but does not
select the source buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun previous-error-this-buffer-no-select (&optional n)
"Move point to the previous 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 \\[previous-error], but does not
select the source buffer."
(interactive "p")
(next-error-select-buffer (current-buffer))
(previous-error-no-select n))