From 7bc44e7f1d35ba447da6964c2448d41151076f49 Mon Sep 17 00:00:00 2001 From: Michael Kifer Date: Sat, 14 Oct 1995 03:14:39 +0000 Subject: (ediff-version): is now autoloaded. --- lisp/ediff.el | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lisp/ediff.el b/lisp/ediff.el index d0a41a33be9..3bdce5c177a 100644 --- a/lisp/ediff.el +++ b/lisp/ediff.el @@ -5,8 +5,8 @@ ;; Created: February 2, 1994 ;; Keywords: comparing, merging, patching, version control. -(defconst ediff-version "2.46" "The current version of Ediff") -(defconst ediff-date "September 28, 1995" "Date of last update") +(defconst ediff-version "2.47" "The current version of Ediff") +(defconst ediff-date "October 11, 1995" "Date of last update") ;; This file is part of GNU Emacs. @@ -1483,6 +1483,15 @@ If `F.~REV~' already exists, it is used instead of being re-created." (setq rev2buf (current-buffer))) (ediff-buffers rev1buf rev2buf startup-hooks 'ediff-revision))) +;;;###autoload +(defun ediff-version () + "Return string describing the version of Ediff. +When called interactively, displays the version." + (interactive) + (if (interactive-p) + (message (ediff-version)) + (format "Ediff %s of %s" ediff-version ediff-date))) + (provide 'ediff) (require 'ediff-util) -- cgit v1.2.1