# HG changeset patch # User Juanma Barranquero # Date 1034873354 0 # Node ID 07d91c802db4cc516e676e0acf326e7447150394 # Parent afefa409b756fcfee67f4d6355de8e38edde59c6 (elint-error, elint-warning): Fix typo. diff -r afefa409b756 -r 07d91c802db4 lisp/emacs-lisp/elint.el --- 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)