mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(diff): Call shell-quote-argument.
This commit is contained in:
parent
8af7df607d
commit
c9cebcb1e5
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue