The other problem.. I tried to do the same with ediff-cmp-options
'(ediff-cmp-options '("-I myregexp"))
Unfortunately in my version of the ediff package ediff-cmp-options is used
as
(apply 'call-process ediff-cmp-program nil nil nil
(append ediff-cmp-options (list (expand-file-name f1)
(expand-file-name f2))))
redefined ediff-same-file-contents as
(defun ediff-same-file-contents (f1 f2)
"Return t if files F1 and F2 have identical contents."
(if (and (not (file-directory-p f1))
(not (file-directory-p f2)))
(let ((res
(apply 'call-process ediff-cmp-program nil nil nil
(list ediff-cmp-options (expand-file-name f1)
(expand-file-name f2)))
))
(and (numberp res) (eq res 0)))
))
which seems to work with my settings - however when I do "=h" (compare hide)
the
files that should be marked as identical with this setting aren't.. what am I doing
wrong?
Richard
---
Name and OpenPGP keys available from pgp key servers
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta