Changeset 4058 for trunk/lisp/ediff.el
- Timestamp:
- 04/16/06 21:46:31 (3 years ago)
- Files:
-
- trunk/lisp/ediff.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/ediff.el
r4037 r4058 8 8 ;; Keywords: comparing, merging, patching, tools, unix 9 9 10 (defconst ediff-version "2.8 0.1" "The current version of Ediff")11 (defconst ediff-date " November 25, 2005" "Date of last update")10 (defconst ediff-version "2.81" "The current version of Ediff") 11 (defconst ediff-date "February 18, 2006" "Date of last update") 12 12 13 13 … … 108 108 ;;; Code: 109 109 110 (provide 'ediff)111 110 112 111 ;; Compiler pacifier … … 122 121 (eval-when-compile 123 122 (let ((load-path (cons (expand-file-name ".") load-path))) 123 (provide 'ediff) ; to break recursive load cycle 124 124 (or (featurep 'ediff-init) 125 125 (load "ediff-init.el" nil nil 'nosuffix)) … … 1375 1375 (read-buffer 1376 1376 "Which buffer to patch? " 1377 ( current-buffer))))1377 (ediff-other-buffer patch-buf)))) 1378 1378 1379 1379 … … 1534 1534 (run-hooks 'ediff-load-hook) 1535 1535 1536 (provide 'ediff) 1537 1538 1536 1539 ;;; Local Variables: 1537 1540 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
