branch: externals/kiwix
commit 06b5d36281d343aa72e3968eaaeb94e9f0bfee7c
Merge: b585e25 511a11c
Author: stardiviner <[email protected]>
Commit: stardiviner <[email protected]>
Merge branch 'master' of github.com:stardiviner/kiwix.el
---
kiwix.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kiwix.el b/kiwix.el
index c1052b7..18b4883 100644
--- a/kiwix.el
+++ b/kiwix.el
@@ -58,7 +58,7 @@
:type 'string
:group 'kiwix)
-(defcustom kiwix-default-data-path (shell-quote-argument (concat (getenv
"HOME") "/.www.kiwix.org/kiwix/" kiwix-default-data-profile-name))
+(defcustom kiwix-default-data-path (concat (getenv "HOME")
"/.www.kiwix.org/kiwix/" kiwix-default-data-profile-name)
"Specify the default Kiwix data path."
:type 'string
:group 'kiwix)
@@ -98,7 +98,7 @@
(library-path (concat kiwix-default-data-path
"/data/library/library.xml"))
)
(async-shell-command
- (concat kiwix-server-command library port daemon library-path))))
+ (concat kiwix-server-command library port daemon (shell-quote-argument
library-path)))))
(defun kiwix-query (query &optional library)