1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Repair change to compilation-context-lines (bug#36832)

* lisp/progmodes/compile.el (compilation-set-window):
Restore proper behaviour when compilation-context-lines is nil,
which is the default.
This commit is contained in:
Mattias Engdegård 2019-09-04 14:35:18 +02:00
parent ed80d6d88c
commit 3f30d98af9

View file

@ -2600,7 +2600,8 @@ column zero points to the current message."
(goto-char mk)
(beginning-of-line 1)
(point)))
(set-window-point w mk))))
(set-window-point w mk))
(t (set-window-point w mk))))
(defvar-local compilation-arrow-overlay nil
"Overlay with the before-string property of `overlay-arrow-string'.