From: Juanma Barranquero Date: Fri, 30 Aug 2002 10:34:48 +0000 (+0000) Subject: (bs-message-without-log): Fix typo. X-Git-Tag: emacs-pretest-21.2.91~94 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e047bc37f005eb85f8d04e51cc8df310271b9594;p=emacs.git (bs-message-without-log): Fix typo. --- diff --git a/lisp/bs.el b/lisp/bs.el index 26942c3e593..d878edd19a4 100644 --- a/lisp/bs.el +++ b/lisp/bs.el @@ -1212,7 +1212,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)))