1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

(bs-message-without-log): Fix typo.

This commit is contained in:
Juanma Barranquero 2002-08-30 11:00:27 +00:00
parent 1121afb461
commit a1d5a11bc2

View File

@ -1213,7 +1213,7 @@ buffer list used for buffer cycling."
(defun bs-message-without-log (&rest args)
"Like `message' but don't log it on the message log.
All arguments ARGS are transfered to function `message'."
All arguments ARGS are transferred to function `message'."
(let ((message-log-max nil))
(apply 'message args)))