branch: elpa/emacsql commit 50e47ee01a6d9dd0f3d5c223349b799571559d6d Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Remove shell quote. --- emacsql-sqlite.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/emacsql-sqlite.el b/emacsql-sqlite.el index f3e19da768..2033b44f0b 100644 --- a/emacsql-sqlite.el +++ b/emacsql-sqlite.el @@ -103,8 +103,7 @@ If called with non-nil ASYNC the return value is meaningless." (src (expand-file-name "sqlite" emacsql-data-root)) (files (mapcar (lambda (f) (expand-file-name f src)) '("sqlite3.c" "emacsql.c"))) - (cflags (list (format "-I%s" (shell-quote-argument src)) - (format "-O%d" (or o-level 2)))) + (cflags (list (format "-I%s" src) (format "-O%d" (or o-level 2)))) (ldlibs (if (eq system-type 'windows-nt) () (list "-ldl"))) (options (emacsql-sqlite-compile-switches)) (output (list "-o" emacsql-sqlite-executable))