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
(cond ((executable-find "ctags-exuberant")
"ctags-exuberant")
((boundp 'ctags-program-name)
ctags-program-name)
(t "ctags")) ; Emacs < 30
"Name of the ctags executable file."
:version "24.1"
:type 'file)