branch: scratch/add-vdiff
commit a2fbb7b53cfe8d8efe25581748ae5c37a8a186a0
Author: justbur <[email protected]>
Commit: justbur <[email protected]>
Rename diff-program-args
---
vdiff.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/vdiff.el b/vdiff.el
index 1cdc940..67f1fc2 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -75,7 +75,7 @@
:group 'vdiff
:type 'string)
-(defcustom vdiff-diff-program-args ""
+(defcustom vdiff-diff-extra-args ""
"Extra arguments to pass to diff. If this is set wrong, you may
break vdiff. It is empty by default."
:group 'vdiff
@@ -404,9 +404,9 @@ because those are handled differently.")
(nconc
(list
prgm
- vdiff-diff-program-args
vdiff--whitespace-args
vdiff--case-args
+ vdiff-diff-extra-args
tmp-a tmp-b)
(when vdiff--3way
(list tmp-c)))