changeset 46696:6caa78f4752d

(lwarn, warn): Doc fix.
author Juanma Barranquero <lekktu@gmail.com>
date Fri, 26 Jul 2002 07:08:58 +0000
parents 1b30d0bdbb32
children ea7123658bc4
files lisp/warnings.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/warnings.el	Fri Jul 26 02:11:28 2002 +0000
+++ b/lisp/warnings.el	Fri Jul 26 07:08:58 2002 +0000
@@ -249,7 +249,7 @@
 (defun lwarn (group level message &rest args)
   "Display a warning message made from (format MESSAGE ARGS...).
 Aside from generating the message with `format',
-this is equivalent to `display-message'.
+this is equivalent to `display-warning'.
 
 GROUP should be a custom group name (a symbol).
 or else a list of symbols whose first element is a custom group name.
@@ -267,7 +267,7 @@
 (defun warn (message &rest args)
   "Display a warning message made from (format MESSAGE ARGS...).
 Aside from generating the message with `format',
-this is equivalent to `display-message', using
+this is equivalent to `display-warning', using
 `emacs' as the group and `:warning' as the level."
   (display-warning 'emacs (apply 'format message args)))