* doc/lispref/processes.texi (Shell Arguments): Prefer diff -u.

This commit is contained in:
Paul Eggert 2015-04-13 20:30:50 -07:00
parent 845cb4a2ce
commit b16cdc2782

View file

@ -196,7 +196,7 @@ Here's an example of using @code{shell-quote-argument} to construct
a shell command:
@example
(concat "diff -c "
(concat "diff -u "
(shell-quote-argument oldfile)
" "
(shell-quote-argument newfile))