[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/warnings.el
From: |
Richard M. Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/warnings.el |
Date: |
Sat, 20 Jul 2002 18:09:46 -0400 |
Index: emacs/lisp/warnings.el
diff -c emacs/lisp/warnings.el:1.1 emacs/lisp/warnings.el:1.2
*** emacs/lisp/warnings.el:1.1 Sat Jul 20 17:54:53 2002
--- emacs/lisp/warnings.el Sat Jul 20 18:09:46 2002
***************
*** 162,167 ****
--- 162,168 ----
;; we return t.
some-match))
+ ;;;###autoload
(defun display-warning (group message &optional level buffer-name)
"Display a warning message, MESSAGE.
GROUP should be a custom group name (a symbol).
***************
*** 236,241 ****
--- 237,243 ----
(set-window-start window warning-series))
(sit-for 0)))))))
+ ;;;###autoload
(defun lwarn (group level message &rest args)
"Display a warning message made from (format MESSAGE ARGS...).
Aside from generating the message with `format',
***************
*** 253,258 ****
--- 255,261 ----
:warning -- suspicious data or circumstances."
(display-warning group (apply 'format message args) level))
+ ;;;###autoload
(defun warn (message &rest args)
"Display a warning message made from (format MESSAGE ARGS...).
Aside from generating the message with `format',