Skip to content

Commit

Permalink
Fix xmlstarlet switches. (Contributed by @marcinant)
Browse files Browse the repository at this point in the history
  • Loading branch information
illusori committed Oct 28, 2012
1 parent a22072c commit d947601
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,3 +1,8 @@
* flymake.el 0.4.13 (2012-10-28-23:19)
* Use -e option to xmlstarlet XML validation so that line errors are captured and
exit code doesn't disable flymake.
(Contributed by @marcinant.)

* flymake.el 0.4.12 (2012-07-23-09:29)
* Use file-truename in flymake-create-temp-inplace to ensure tempfile names are in normal form.
(Contributed by @arnested.)
Expand Down
4 changes: 2 additions & 2 deletions flymake.el
Expand Up @@ -4,7 +4,7 @@

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

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

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

(provide 'flymake)

Expand Down

0 comments on commit d947601

Please sign in to comment.