Remove debug print

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2023-12-14 15:06:50 +01:00
parent e01811711e
commit 04d61eb94a
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -42,7 +42,7 @@ Disable window changing using the mouse, it saves me from accidental switches.
(when (eq 1 (length (get-buffer-window-list buffer nil t)))
(when (frame-parameter frame 'unsplittable)
(with-current-buffer buffer
(when (equal major-mode #'vterm-mode) (message "VTERM") (kill-process (get-buffer-process buffer)))
(when (equal major-mode #'vterm-mode) (kill-process (get-buffer-process buffer)))
(kill-buffer buffer))))))))
(add-to-list 'delete-frame-functions #'maybe-delete-frame-buffer)
#+end_src