|
@@ -156,11 +156,8 @@ Format is: /REGEXP/TAGNAME/FLAGS,TAGTYPE/
|
|
|
See the ctags documentation for more information.")
|
|
|
|
|
|
(defcustom org-ctags-path-to-ctags
|
|
|
- (case system-type
|
|
|
- (windows-nt "ctags.exe")
|
|
|
- (darwin "ctags-exuberant")
|
|
|
- (t "ctags-exuberant"))
|
|
|
- "Full path to the ctags executable file."
|
|
|
+ (if (executable-find "ctags-exuberant") "ctags-exuberant" "ctags")
|
|
|
+ "Name of the ctags executable file."
|
|
|
:group 'org-ctags
|
|
|
:version "24.1"
|
|
|
:type 'file)
|