diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-12-31 09:26:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-12-31 09:26:43 +0000 |
commit | c9cebcb1e54dec2ca310cacafc45316eea0dc950 (patch) | |
tree | d91e55e54824968683902553e2571952e12d9485 /lisp/diff.el | |
parent | 8af7df607d2e0cdf57791cfe107626918b028ed4 (diff) | |
download | emacs-c9cebcb1e54dec2ca310cacafc45316eea0dc950.tar.gz emacs-c9cebcb1e54dec2ca310cacafc45316eea0dc950.tar.bz2 emacs-c9cebcb1e54dec2ca310cacafc45316eea0dc950.zip |
(diff): Call shell-quote-argument.
Diffstat (limited to 'lisp/diff.el')
-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 |