1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(elint-error, elint-warning): Fix typo.

This commit is contained in:
Juanma Barranquero 2002-10-17 16:49:14 +00:00
parent 526a5cbc6d
commit a62396ccb3

View file

@ -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)