summaryrefslogtreecommitdiff
path: root/org-fc-awk.el
diff options
context:
space:
mode:
authorLeon Rische <leon.rische@me.com>2020-11-02 14:09:54 +0100
committerLeon Rische <leon.rische@me.com>2020-11-02 14:09:54 +0100
commit94e29c6ac8e618ddb9acc730738374eadb47ac62 (patch)
tree1d0b97ed648bc2823100da8d3f4ffdc3ac24f5a8 /org-fc-awk.el
parent730f8461002d6562856c8f636c1b5cd7d8a2c638 (diff)
Shell quote file paths
Diffstat (limited to 'org-fc-awk.el')
-rw-r--r--org-fc-awk.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-fc-awk.el b/org-fc-awk.el
index 9c9d89b..fce1747 100644
--- a/org-fc-awk.el
+++ b/org-fc-awk.el
@@ -31,7 +31,7 @@ a '.' to exclude temporary / backup files.
With the '-L' option, 'find' follows symlinks."
(format
"find -L %s -name \"*.org\" -not -name \".*\" -print0"
- (mapconcat 'identity paths " ")))
+ (mapconcat 'shell-quote-argument paths " ")))
(defun org-fc-awk--indexer-variables ()
"Variables to pass to indexer scripts."