* lisp/saveplace.el (save-place-alist-to-file): Tell 'write-region'
to be quiet when called non-interactively. This is in harmony with
'savehist-save'. (Bug#76267)
(cherry picked from commit
8f45cbdee45317faa978732fa5311c3c056b559f)
t))))
(condition-case nil
;; Don't use write-file; we don't want this buffer to visit it.
- (write-region (point-min) (point-max) file)
+ (write-region (point-min) (point-max) file nil
+ (unless (called-interactively-p 'interactive) 'quiet))
(file-error (message "Saving places: can't write %s" file)))))))
(defun save-places-to-alist ()