Variable: org-ctags-path-to-ctags

org-ctags-path-to-ctags is a customizable variable defined in org-ctags.el.gz.

Value

"ctags"

Documentation

Name of the ctags executable file.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defcustom org-ctags-path-to-ctags
  (if (executable-find "ctags-exuberant") "ctags-exuberant" "ctags")
  "Name of the ctags executable file."
  :version "24.1"
  :type 'file)