[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/warnings.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/warnings.el |
Date: |
Fri, 26 Jul 2002 03:08:59 -0400 |
Index: emacs/lisp/warnings.el
diff -c emacs/lisp/warnings.el:1.4 emacs/lisp/warnings.el:1.5
*** emacs/lisp/warnings.el:1.4 Tue Jul 23 23:54:58 2002
--- emacs/lisp/warnings.el Fri Jul 26 03:08:58 2002
***************
*** 249,255 ****
(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'.
GROUP should be a custom group name (a symbol).
or else a list of symbols whose first element is a custom group name.
--- 249,255 ----
(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-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,273 ****
(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
`emacs' as the group and `:warning' as the level."
(display-warning 'emacs (apply 'format message args)))
--- 267,273 ----
(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-warning', using
`emacs' as the group and `:warning' as the level."
(display-warning 'emacs (apply 'format message args)))