Improve test for operating system in org-ctags.el
This commit is contained in:
parent
7954049158
commit
a4384ac49d
|
@ -1,5 +1,7 @@
|
||||||
2010-01-15 Carsten Dominik <carsten.dominik@gmail.com>
|
2010-01-15 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
|
* org-ctags.el (org-ctags-path-to-ctags): Better system-type test.
|
||||||
|
|
||||||
* org-latex.el (org-export-latex-treat-backslash-char): Do not by
|
* org-latex.el (org-export-latex-treat-backslash-char): Do not by
|
||||||
accident protect a character that is before a backslash.
|
accident protect a character that is before a backslash.
|
||||||
|
|
||||||
|
|
|
@ -132,14 +132,14 @@ Format is: /REGEXP/TAGNAME/FLAGS,TAGTYPE/
|
||||||
See the ctags documentation for more information.")
|
See the ctags documentation for more information.")
|
||||||
|
|
||||||
(defcustom org-ctags-path-to-ctags
|
(defcustom org-ctags-path-to-ctags
|
||||||
(case (operating-system)
|
(case system-type
|
||||||
(windows "ctags.exe")
|
(windows-nt "ctags.exe")
|
||||||
(unix "ctags-exuberant"))
|
(darwin "ctags-exuberant")
|
||||||
|
(t "ctags-exuberant"))
|
||||||
"Full path to the ctags executable file."
|
"Full path to the ctags executable file."
|
||||||
:group 'org-ctags
|
:group 'org-ctags
|
||||||
:type 'file)
|
:type 'file)
|
||||||
|
|
||||||
|
|
||||||
(defcustom org-ctags-open-link-functions
|
(defcustom org-ctags-open-link-functions
|
||||||
'(org-ctags-find-tag
|
'(org-ctags-find-tag
|
||||||
org-ctags-ask-rebuild-tags-file-then-find-tag
|
org-ctags-ask-rebuild-tags-file-then-find-tag
|
||||||
|
|
Loading…
Reference in New Issue