CVS update by michaelk packages/xemacs-packages/ediff ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Sat Dec 23 16:38:15 EST 2006
User: michaelk
Date: 06/12/23 22:38:15
Modified: packages/xemacs-packages/ediff ediff-diff.el ChangeLog
Log:
* ediff-diff.el (ediff-diff-options): clarify docstring.
(ediff-setup-diff-regions): disallow -u in ediff-diff-options.
Revision Changes Path
1.32 +10 -6 XEmacs/packages/xemacs-packages/ediff/ediff-diff.el
Index: ediff-diff.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/ediff/ediff-diff.el,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -p -r1.31 -r1.32
--- ediff-diff.el 2006/11/23 14:18:37 1.31
+++ ediff-diff.el 2006/12/23 21:38:13 1.32
@@ -133,9 +133,13 @@ are `-I REGEXP', to ignore changes whose
(defcustom ediff-diff-options ""
"*Options to pass to `ediff-diff-program'.
If Unix diff is used as `ediff-diff-program',
- then a useful option is `-w', to ignore space.
-Options `-c' and `-i' are not allowed. Case sensitivity can be
- toggled interactively using \\[ediff-toggle-ignore-case]."
+then a useful option is `-w', to ignore space.
+Options `-c', `-u', and `-i' are not allowed. Case sensitivity can be
+toggled interactively using \\[ediff-toggle-ignore-case].
+
+This variable is not for customizing the look of the differences produced by
+the command \\[ediff-show-diff-output]. Use the variable
+`ediff-custom-diff-options' for that."
:set 'ediff-reset-diff-options
:type 'string
:group 'ediff-diff)
@@ -254,10 +258,10 @@ one optional arguments, diff-number to r
;; ediff-setup-diff-regions-function, which can also have the value
;; ediff-setup-diff-regions3, which takes 4 arguments.
(defun ediff-setup-diff-regions (file-A file-B file-C)
- ;; looking for '-c', '-i', or a 'c', 'i' among clustered non-long options
- (if (string-match "^-[ci]\\| -[ci]\\|\\(^\\| \\)-[^- ]+[ci]"
+ ;; looking for '-c', '-i', '-u', or 'c', 'i', 'u' among clustered non-long options
+ (if (string-match "^-[ciu]\\| -[ciu]\\|\\(^\\| \\)-[^- ]+[ciu]"
ediff-diff-options)
- (error "Options `-c' and `-i' are not allowed in `ediff-diff-options'"))
+ (error "Options `-c', `-u', and `-i' are not allowed in `ediff-diff-options'"))
;; create, if it doesn't exist
(or (ediff-buffer-live-p ediff-diff-buffer)
1.112 +5 -0 XEmacs/packages/xemacs-packages/ediff/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/ediff/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -p -r1.111 -r1.112
--- ChangeLog 2006/11/27 18:54:59 1.111
+++ ChangeLog 2006/12/23 21:38:13 1.112
@@ -1,3 +1,8 @@
+2006-12-23 Michael Kifer <kifer at cs.stonybrook.edu>
+
+ * ediff-diff.el (ediff-diff-options): clarify docstring.
+ (ediff-setup-diff-regions): disallow -u in ediff-diff-options.
+
2006-11-27 Norbert Koch <viteno at xemacs.org>
* Makefile (VERSION): XEmacs package 1.66 released.
More information about the XEmacs-CVS
mailing list