summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-09-04 19:06:19 +0300
committerEli Zaretskii <eliz@gnu.org>2023-09-04 19:06:19 +0300
commit1d3d419607334c54d13f997053fed970d8d07306 (patch)
treeb5d27a991255183ac96046e68ba19acd277275e8 /lisp/files.el
parent42b14c6e5bbb525bfb5f4acc5cd8bf78de213eab (diff)
downloademacs-1d3d419607334c54d13f997053fed970d8d07306.tar.gz
emacs-1d3d419607334c54d13f997053fed970d8d07306.tar.bz2
emacs-1d3d419607334c54d13f997053fed970d8d07306.zip
; * lisp/files.el (save-some-buffers-functions): Doc fix (bug#65414).
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 29d109ab385..32c39a8cacb 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -5997,14 +5997,18 @@ See `save-some-buffers' for PRED values."
(defvar save-some-buffers-functions nil
"Functions to be run by `save-some-buffers' after saving the buffers.
-The functions can be called in two \"modes\", depending on the
-first argument. If the first argument is `query', then the
+These functions should accept one mandatory and one optional
+argument, and they can be called in two \"modes\", depending on
+the first argument. If the first argument is `query', then the
function should return non-nil if there is something to be
saved (but it should not actually save anything).
If the first argument is something else, then the function should
save according to the value of the second argument, which is the
-ARG argument from `save-some-buffers'.")
+ARG argument with which `save-some-buffers' was called.
+
+The main purpose of these functions is to save stuff that is kept
+in variables (rather than in buffers).")
(defun save-some-buffers (&optional arg pred)
"Save some modified file-visiting buffers. Asks user about each one.