Mercurial > emacs
changeset 47923:07d91c802db4
(elint-error, elint-warning): Fix typo.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 17 Oct 2002 16:49:14 +0000 |
parents | afefa409b756 |
children | d9a861a5b9d6 |
files | lisp/emacs-lisp/elint.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/elint.el Thu Oct 17 16:47:54 2002 +0000 +++ b/lisp/emacs-lisp/elint.el Thu Oct 17 16:49:14 2002 +0000 @@ -609,14 +609,14 @@ ;; to reflect different seriousness of linting errors (defun elint-error (string &rest args) - "Report an linting error. + "Report a linting error. STRING and ARGS are thrown on `format' to get the message." (let ((errstr (apply 'format string args))) (elint-log-message errstr) )) (defun elint-warning (string &rest args) - "Report an linting warning. + "Report a linting warning. STRING and ARGS are thrown on `format' to get the message." (let ((errstr (apply 'format string args))) (elint-log-message errstr)