Improve doc string of 'files--message'

* lisp/files.el (files--message): Improve the wording of doc
string.  (Bug#38737)
This commit is contained in:
Eli Zaretskii 2019-12-25 17:00:06 +02:00
parent c3be58a8f5
commit 91c16acbe2

View file

@ -2166,9 +2166,9 @@ If that fails, try to open it with `find-file-literally'
(* total-free-memory 1024)))))))))
(defun files--message (format &rest args)
"Like `message', except sometimes don't print to minibuffer.
If the variable `save-silently' is non-nil, the message is not
displayed on the minibuffer."
"Like `message', except sometimes don't show the message text.
If the variable `save-silently' is non-nil, the message will not
be visible in the echo area."
(apply #'message format args)
(when save-silently (message nil)))