Skip to content

Commit

Permalink
tweak(xclip): log errors to *Messages* but don't display them
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Aug 30, 2024
1 parent d0b8523 commit 33b05ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/me-tty.el
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
:hook (tty-setup . +xclip--enable-in-tty-h)
:config
(defun +xclip--enable-in-tty-h ()
(with-demoted-errors "%s" (xclip-mode 1))))
(let ((inhibit-message t))
(with-demoted-errors "%s" (xclip-mode 1)))))


(provide 'me-tty)
Expand Down

0 comments on commit 33b05ff

Please sign in to comment.