|
@@ -132,14 +132,14 @@ Format is: /REGEXP/TAGNAME/FLAGS,TAGTYPE/
|
|
|
See the ctags documentation for more information.")
|
|
|
|
|
|
(defcustom org-ctags-path-to-ctags
|
|
|
- (case (operating-system)
|
|
|
- (windows "ctags.exe")
|
|
|
- (unix "ctags-exuberant"))
|
|
|
+ (case system-type
|
|
|
+ (windows-nt "ctags.exe")
|
|
|
+ (darwin "ctags-exuberant")
|
|
|
+ (t "ctags-exuberant"))
|
|
|
"Full path to the ctags executable file."
|
|
|
:group 'org-ctags
|
|
|
:type 'file)
|
|
|
|
|
|
-
|
|
|
(defcustom org-ctags-open-link-functions
|
|
|
'(org-ctags-find-tag
|
|
|
org-ctags-ask-rebuild-tags-file-then-find-tag
|