Variable: flymake-proc-xml-program

flymake-proc-xml-program is a customizable variable defined in flymake-proc.el.gz.

Value

"xml"

Documentation

Program to use for XML validation.

This variable was added, or its default value changed, in Emacs 24.4.

Aliases

flymake-xml-program (obsolete since 26.1)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/flymake-proc.el.gz
(defcustom flymake-proc-xml-program
  (if (executable-find "xmlstarlet") "xmlstarlet" "xml")
  "Program to use for XML validation."
  :type 'file
  :group 'flymake
  :version "24.4")