aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-04-13 20:30:50 -0700
committerPaul Eggert2015-04-13 20:32:22 -0700
commitb16cdc2782ba4fbc019c8c6d1749f6eff16f6fce (patch)
tree40dacdfc9c61d10ca3c82f36874f2b0d7e3267c9
parent845cb4a2ce9e32b12f2a916e3f5812d96ea56c77 (diff)
downloademacs-b16cdc2782ba4fbc019c8c6d1749f6eff16f6fce.tar.gz
emacs-b16cdc2782ba4fbc019c8c6d1749f6eff16f6fce.zip
* doc/lispref/processes.texi (Shell Arguments): Prefer diff -u.
-rw-r--r--doc/lispref/processes.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index f228921137c..2bc6a1843c4 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -196,7 +196,7 @@ Here's an example of using @code{shell-quote-argument} to construct
196a shell command: 196a shell command:
197 197
198@example 198@example
199(concat "diff -c " 199(concat "diff -u "
200 (shell-quote-argument oldfile) 200 (shell-quote-argument oldfile)
201 " " 201 " "
202 (shell-quote-argument newfile)) 202 (shell-quote-argument newfile))