diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-08-30 11:00:27 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-08-30 11:00:27 +0000 |
commit | a1d5a11bc215c31bd7576449595a1d009594d975 (patch) | |
tree | 776d6da14fdb42a642f5e183e0ed98d8543146c6 /lisp/bs.el | |
parent | 1121afb461cb7dea8362486180eb0febaeec4b46 (diff) | |
download | emacs-a1d5a11bc215c31bd7576449595a1d009594d975.tar.gz |
(bs-message-without-log): Fix typo.
Diffstat (limited to 'lisp/bs.el')
-rw-r--r-- | lisp/bs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bs.el b/lisp/bs.el index 357852d99ee..ab46f205fba 100644 --- a/lisp/bs.el +++ b/lisp/bs.el @@ -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))) |