Function: hattr:save
hattr:save is a byte-compiled function defined in hbut.el.
Signature
(hattr:save)
Documentation
Save button attribute file for current directory, if modified.
Suitable for use as part of write-file-functions.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun hattr:save ()
"Save button attribute file for current directory, if modified.
Suitable for use as part of `write-file-functions'."
(let* ((bd-file (expand-file-name hattr:filename default-directory))
(buf (and (stringp default-directory)
(get-file-buffer bd-file))))
(if (and ebut:hattr-save buf (not (eq buf (current-buffer))))
(let ((ebut:hattr-save)) ;; Prevents `write-file-functions' from looping.
(and (buffer-modified-p buf)
(with-current-buffer buf (save-buffer)
;; Unlock button attribute file; kill buffer so user is
;; never holding a buffer which is out of sync with file,
;; due to some other user's edits.
;; Maybe this should be user or site configurable.
(or (buffer-modified-p buf) (kill-buffer buf)))))))
;; Must return nil, so can be used as part of write-file-functions.
nil)