aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/flymake.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 70bb9bce334..b74e4c6f9a9 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12010-01-14 Juanma Barranquero <lekktu@gmail.com> 12010-01-14 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * progmodes/flymake.el (flymake-post-syntax-check):
4 Fix typo in error message.
5
62010-01-14 Juanma Barranquero <lekktu@gmail.com>
7
3 * hexl.el (hexl-printable-character): Fix check of `hexl-iso', 8 * hexl.el (hexl-printable-character): Fix check of `hexl-iso',
4 which is always a string. (Bug#5313) 9 which is always a string. (Bug#5313)
5 10
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 865cd153be1..4af331c5c29 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -643,7 +643,7 @@ It's flymake process filter."
643 (flymake-report-status "" "") ; PASSED 643 (flymake-report-status "" "") ; PASSED
644 (if (not flymake-check-was-interrupted) 644 (if (not flymake-check-was-interrupted)
645 (flymake-report-fatal-status "CFGERR" 645 (flymake-report-fatal-status "CFGERR"
646 (format "Configuration error has occured while running %s" command)) 646 (format "Configuration error has occurred while running %s" command))
647 (flymake-report-status nil ""))) ; "STOPPED" 647 (flymake-report-status nil ""))) ; "STOPPED"
648 (flymake-report-status (format "%d/%d" err-count warn-count) "")))) 648 (flymake-report-status (format "%d/%d" err-count warn-count) ""))))
649 649