diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-25 11:39:42 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-25 11:39:42 -0500 |
commit | 31426bbb81e6626fb867e53c28200f6b113e9019 (patch) | |
tree | aded0d39414bd4728f01105648cc6968e709a130 /common | |
parent | ba8f0ae1089e42c1865aff56c81a258aab93c4c2 (diff) | |
download | dotfiles-31426bbb81e6626fb867e53c28200f6b113e9019.tar.gz dotfiles-31426bbb81e6626fb867e53c28200f6b113e9019.zip |
Emacs: Make `write-string' utility suppress messages
Diffstat (limited to 'common')
-rw-r--r-- | common/.emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/.emacs.d/init.el b/common/.emacs.d/init.el index 57c79f7..a93530d 100644 --- a/common/.emacs.d/init.el +++ b/common/.emacs.d/init.el @@ -284,7 +284,7 @@ (write-region (point-min) (point-max) filename append - nil nil mustbenew))) + 'silent nil mustbenew))) (defun file-string (filename &optional beg end) (with-temp-buffer |