Skip to content

Commit

Permalink
fix regression for window-point-insertion-type=t being overwritten (#307
Browse files Browse the repository at this point in the history
)
  • Loading branch information
skebanga authored Jun 25, 2020
1 parent 554f7ca commit f52fa43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dap-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,8 @@ PARAMS are the event params.")
(defun dap--create-output-buffer (session-name)
"Creates an output buffer with with name SESSION-NAME."
(with-current-buffer (get-buffer-create (concat "*" session-name " out*"))
(set (make-local-variable 'window-point-insertion-type) t)
(special-mode)
(set (make-local-variable 'window-point-insertion-type) t)
(current-buffer)))

(defun dap--make-request (command &optional args)
Expand Down

0 comments on commit f52fa43

Please sign in to comment.