comparison lisp/ediff/ediff-diff.el @ 82:6a378aca36af r20-0b91

Import from CVS: tag r20-0b91
author cvs
date Mon, 13 Aug 2007 09:07:36 +0200
parents 1ce6082ce73f
children 34a5b81f86ba
comparison
equal deleted inserted replaced
81:ebca3d831cea 82:6a378aca36af
1 ;;; ediff-diff.el --- diff-related utilities 1 ;;; ediff-diff.el --- diff-related utilities
2 2
3 ;; Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. 3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
4 4
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu> 5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
6 6
7 ;; This file is part of GNU Emacs. 7 ;; This file is part of GNU Emacs.
8 8
27 27
28 ;; compiler pacifier 28 ;; compiler pacifier
29 (defvar ediff-default-variant) 29 (defvar ediff-default-variant)
30 30
31 (eval-when-compile 31 (eval-when-compile
32 (let ((load-path (cons "." load-path))) 32 (let ((load-path (cons (expand-file-name ".") load-path)))
33 (or (featurep 'ediff-init) 33 (or (featurep 'ediff-init)
34 (load "ediff-init.el" nil nil 'nosuffix)) 34 (load "ediff-init.el" nil nil 'nosuffix))
35 (or (featurep 'ediff-util) 35 (or (featurep 'ediff-util)
36 (load "ediff-util.el" nil nil 'nosuffix)) 36 (load "ediff-util.el" nil nil 'nosuffix))
37 )) 37 ))