Function: hypb:save-buffer-silently
hypb:save-buffer-silently is an autoloaded and byte-compiled function
defined in hypb.el.
Signature
(hypb:save-buffer-silently)
Documentation
Silently save the current buffer whether modified or not.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;;;###autoload
(defun hypb:save-buffer-silently ()
"Silently save the current buffer whether modified or not."
(when (buffer-modified-p)
(let (
;; Prevent output to the echo area / stdout
(inhibit-message t)
;; Prevent writing to the *Messages* buffer
(message-log-max nil))
(basic-save-buffer))))