Function: compilation-display-error

compilation-display-error is an interactive and byte-compiled function defined in compile.el.gz.

Signature

(compilation-display-error)

Documentation

Display the source for current error in another window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
(defun compilation-display-error ()
  "Display the source for current error in another window."
  (interactive)
  (setq compilation-current-error (point))
  (next-error-no-select 0))