Variable: cfengine-cf-promises

cfengine-cf-promises is a customizable variable defined in cfengine.el.gz.

Value

nil

Documentation

The location of the cf-promises executable.

Used for syntax discovery and checking. Set to nil to disable the compile-command override. In that case, the ElDoc support will use a fallback syntax definition.

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

Probably introduced at or before Emacs version 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cfengine.el.gz
(defcustom cfengine-cf-promises
  (or (executable-find "cf-promises")
      (executable-find "/var/cfengine/bin/cf-promises")
      (executable-find "/usr/bin/cf-promises")
      (executable-find "/usr/sbin/cf-promises")
      (executable-find "/usr/local/bin/cf-promises")
      (executable-find "/usr/local/sbin/cf-promises")
      (executable-find "~/bin/cf-promises")
      (executable-find "~/sbin/cf-promises"))
  "The location of the cf-promises executable.
Used for syntax discovery and checking.  Set to nil to disable
the `compile-command' override.  In that case, the ElDoc support
will use a fallback syntax definition."
  :version "24.4"
  :type '(choice file (const nil)))