diff options
Diffstat (limited to 'lisp/org')
-rw-r--r-- | lisp/org/org-ctags.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/org/org-ctags.el b/lisp/org/org-ctags.el index 5dd2bfd59cd..990214f4117 100644 --- a/lisp/org/org-ctags.el +++ b/lisp/org/org-ctags.el @@ -156,7 +156,9 @@ Format is: /REGEXP/TAGNAME/FLAGS,TAGTYPE/ See the ctags documentation for more information.") (defcustom org-ctags-path-to-ctags - (if (executable-find "ctags-exuberant") "ctags-exuberant" "ctags") + (if (executable-find "ctags-exuberant") + "ctags-exuberant" + ctags-program-name) "Name of the ctags executable file." :version "24.1" :type 'file) |