Skip to content

Commit d947601

Browse files
committed
Fix xmlstarlet switches. (Contributed by @marcinant)
1 parent a22072c commit d947601

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* flymake.el 0.4.13 (2012-10-28-23:19)
2+
* Use -e option to xmlstarlet XML validation so that line errors are captured and
3+
exit code doesn't disable flymake.
4+
(Contributed by @marcinant.)
5+
16
* flymake.el 0.4.12 (2012-07-23-09:29)
27
* Use file-truename in flymake-create-temp-inplace to ensure tempfile names are in normal form.
38
(Contributed by @arnested.)

flymake.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: Pavel Kobyakov <pk_at_work@yahoo.com>
66
;; Maintainer: Sam Graham <libflymake-emacs BLAHBLAH illusori.co.uk>
7-
;; Version: 0.4.12
7+
;; Version: 0.4.13
88
;; Keywords: c languages tools
99

1010
;; This file is part of GNU Emacs.
@@ -2163,7 +2163,7 @@ wish to have supplied to Perl -I."
21632163

21642164
;;;; xml-specific init-cleanup routines
21652165
(defun flymake-xml-init ()
2166-
(list "xmlstarlet" (list "val" (flymake-init-create-temp-buffer-copy 'flymake-create-temp-copy))))
2166+
(list "xmlstarlet" (list "val" "-e" (flymake-init-create-temp-buffer-copy 'flymake-create-temp-copy))))
21672167

21682168
(provide 'flymake)
21692169

0 commit comments

Comments
 (0)