mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-27 10:54:40 +00:00
(diff): Call shell-quote-argument.
This commit is contained in:
parent
8af7df607d
commit
c9cebcb1e5
@ -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…
Reference in New Issue
Block a user