User: scop
Date: 06/07/04 23:48:06
Modified: packages/unsupported/scop/vc ChangeLog vc.el
Log:
No find-operation-coding-system in XEmacs.
Revision Changes Path
1.55 +3 -0 XEmacs/packages/unsupported/scop/vc/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/unsupported/scop/vc/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -p -r1.54 -r1.55
--- ChangeLog 2006/07/04 20:58:33 1.54
+++ ChangeLog 2006/07/04 21:48:05 1.55
@@ -1,5 +1,8 @@
2006-07-04 Ville Skyttä <scop(a)xemacs.org>
+ * vc.el (vc-coding-system-for-diff): We don't have
+ `find-operation-coding-system'.
+
* vc.el (vc-revert-buffer): Don't try to delete the revert
confirmation diff window for now as it breaks for some
reason, and prevents the actual revert from happening.
1.32 +2 -1 XEmacs/packages/unsupported/scop/vc/vc.el
Index: vc.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/unsupported/scop/vc/vc.el,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -p -r1.31 -r1.32
--- vc.el 2006/07/04 20:58:33 1.31
+++ vc.el 2006/07/04 21:48:05 1.32
@@ -1940,7 +1940,8 @@ The meaning of REV1 and REV2 is the same
(if buf (with-current-buffer buf
buffer-file-coding-system)))
;; otherwise, try to find one based on the file name
- (car (find-operation-coding-system 'insert-file-contents file))
+ ;; XEmacs change: no find-operation-coding-system
+ ;(car (find-operation-coding-system 'insert-file-contents file))
;; and a final fallback
'undecided))
Show replies by date