diff options
-rw-r--r-- | lisp/diff.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/diff.el b/lisp/diff.el index e301aa70a6e..82a657f4ecc 100644 --- a/lisp/diff.el +++ b/lisp/diff.el @@ -207,8 +207,10 @@ With prefix arg, prompt for diff switches." (list diff-switches))) (if (or old-alt new-alt) (list "-L" old "-L" new)) - (list (or old-alt old)) - (list (or new-alt new))) + (list + (shell-quote-argument (or old-alt old))) + (list + (shell-quote-argument (or new-alt new)))) " "))) (setq buf (compile-internal command |