diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-10-17 16:49:14 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-10-17 16:49:14 +0000 |
commit | a62396ccb381225cfc9b2ddf806709664891b8b4 (patch) | |
tree | bdea457fb88c45d318dc81772291feb209d31da4 /lisp/emacs-lisp | |
parent | 526a5cbc6daf767a08c4c539184fa0bbe79084a6 (diff) | |
download | emacs-a62396ccb381225cfc9b2ddf806709664891b8b4.tar.gz emacs-a62396ccb381225cfc9b2ddf806709664891b8b4.tar.bz2 emacs-a62396ccb381225cfc9b2ddf806709664891b8b4.zip |
(elint-error, elint-warning): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/elint.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/elint.el b/lisp/emacs-lisp/elint.el index 1d289471aaf..502094fd376 100644 --- a/lisp/emacs-lisp/elint.el +++ b/lisp/emacs-lisp/elint.el @@ -609,14 +609,14 @@ CODE can be a lambda expression, a macro, or byte-compiled code." ;; 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) |