1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-05 15:11:30 -08:00

Fix typo in error message.

This commit is contained in:
Juanma Barranquero 2010-01-14 19:49:53 +01:00
parent c2dd191063
commit 80cd4bb402
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-01-14 Juanma Barranquero <lekktu@gmail.com>
* progmodes/flymake.el (flymake-post-syntax-check):
Fix typo in error message.
2010-01-14 Juanma Barranquero <lekktu@gmail.com>
* hexl.el (hexl-printable-character): Fix check of `hexl-iso',

View file

@ -643,7 +643,7 @@ It's flymake process filter."
(flymake-report-status "" "") ; PASSED
(if (not flymake-check-was-interrupted)
(flymake-report-fatal-status "CFGERR"
(format "Configuration error has occured while running %s" command))
(format "Configuration error has occurred while running %s" command))
(flymake-report-status nil ""))) ; "STOPPED"
(flymake-report-status (format "%d/%d" err-count warn-count) ""))))