org-ctags.el: Fix use of "ctags" executable
* lisp/org-ctags.el (org-ctags-create-tags): Allow file globbing in `shell-command' invocation of "ctags". TINYCHANGE
This commit is contained in:
parent
cfb48624f3
commit
981402a93d
|
@ -484,7 +484,7 @@ its subdirectories contain large numbers of taggable files."
|
||||||
(setq exitcode
|
(setq exitcode
|
||||||
(shell-command
|
(shell-command
|
||||||
(format (concat "%s --langdef=orgmode --langmap=orgmode:.org "
|
(format (concat "%s --langdef=orgmode --langmap=orgmode:.org "
|
||||||
"--regex-orgmode=\"%s\" -f \"%s\" -e -R \"%s\"")
|
"--regex-orgmode=\"%s\" -f \"%s\" -e -R %s")
|
||||||
org-ctags-path-to-ctags
|
org-ctags-path-to-ctags
|
||||||
org-ctags-tag-regexp
|
org-ctags-tag-regexp
|
||||||
(expand-file-name (concat dir-name "/TAGS"))
|
(expand-file-name (concat dir-name "/TAGS"))
|
||||||
|
|
Loading…
Reference in New Issue