]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve doc string of 'files--message'
authorEli Zaretskii <eliz@gnu.org>
Wed, 25 Dec 2019 15:00:06 +0000 (17:00 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 25 Dec 2019 15:00:06 +0000 (17:00 +0200)
* lisp/files.el (files--message): Improve the wording of doc
string.  (Bug#38737)

lisp/files.el

index 503f7fca72a835d3f35d204d999643a54dc22139..059fdbbe37161b99ac4806c088115dc5220a0d38 100644 (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)))