[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/ediff-vers.el
From: |
Michael Kifer |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/ediff-vers.el |
Date: |
Mon, 07 Jan 2002 23:36:03 -0500 |
Index: emacs/lisp/ediff-vers.el
diff -c emacs/lisp/ediff-vers.el:1.15 emacs/lisp/ediff-vers.el:1.16
*** emacs/lisp/ediff-vers.el:1.15 Mon Jul 16 03:46:48 2001
--- emacs/lisp/ediff-vers.el Mon Jan 7 23:36:01 2002
***************
*** 1,8 ****
;;; ediff-vers.el --- version control interface to Ediff
! ;;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
! ;; Author: Michael Kifer <address@hidden>
;; This file is part of GNU Emacs.
--- 1,8 ----
;;; ediff-vers.el --- version control interface to Ediff
! ;;; Copyright (C) 1995, 96, 97, 2002 Free Software Foundation, Inc.
! ;; Author: Michael Kifer <address@hidden>
;; This file is part of GNU Emacs.
***************
*** 35,50 ****
(and noninteractive
(eval-when-compile
! (load "pcl-cvs" 'noerror)
! (load "rcs" 'noerror)
! ;; On 8+3 MS-DOS filesystems, generic-x.el is loaded
! ;; instead of (the missing) generic-sc.el. Since the
! ;; version of Emacs which supports MS-DOS doesn't have
! ;; generic-sc, we simply avoid loading it.
! (or (and (fboundp 'msdos-long-file-names)
! (not (msdos-long-file-names)))
! (load "generic-sc" 'noerror))
! (load "vc" 'noerror)))
;; end pacifier
;; VC.el support
--- 35,54 ----
(and noninteractive
(eval-when-compile
! (let ((load-path (cons (expand-file-name ".") load-path)))
! (load "pcl-cvs" 'noerror)
! (load "rcs" 'noerror)
! ;; On 8+3 MS-DOS filesystems, generic-x.el is loaded
! ;; instead of (the missing) generic-sc.el. Since the
! ;; version of Emacs which supports MS-DOS doesn't have
! ;; generic-sc, we simply avoid loading it.
! (or (and (fboundp 'msdos-long-file-names)
! (not (msdos-long-file-names)))
! (load "generic-sc" 'noerror))
! ;; (load "vc" 'noerror) ; this sometimes causes compiler error
! (or (featurep 'ediff-init)
! (load "ediff-init.el" nil nil 'nosuffix))
! )))
;; end pacifier
;; VC.el support
***************
*** 246,252 ****
;; PCL-CVS.el support
!
(defun cvs-run-ediff-on-file-descriptor (tin)
;; This is a replacement for cvs-emerge-mode
;; Runs after cvs-update.
--- 250,256 ----
;; PCL-CVS.el support
! ;; MK: Check. This function doesn't seem to be used any more by pcvs or
pcl-cvs
(defun cvs-run-ediff-on-file-descriptor (tin)
;; This is a replacement for cvs-emerge-mode
;; Runs after cvs-update.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/lisp/ediff-vers.el,
Michael Kifer <=