diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-04 08:22:09 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-04 08:22:09 +0000 |
commit | 675fa29f0b00b2579a5eb3903d7bdcaba6afb2de (patch) | |
tree | d5a5100193fc897eb628a28cbeac264d58bb7ceb /lisp/ediff.el | |
parent | 1ffdd64a90272a065cdbc9aedd12e16fc76d2db0 (diff) | |
download | emacs-675fa29f0b00b2579a5eb3903d7bdcaba6afb2de.tar.gz |
(ediff-version): Function, variable deleted.
(ediff-date): Var deleted.
(ediff-status-info): Don't call ediff-version.
Diffstat (limited to 'lisp/ediff.el')
-rw-r--r-- | lisp/ediff.el | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/lisp/ediff.el b/lisp/ediff.el index a10c11f61de..b8d48a2bd95 100644 --- a/lisp/ediff.el +++ b/lisp/ediff.el @@ -3,7 +3,7 @@ ;; Author: Michael Kifer <kifer@cs.sunysb.edu> ;; Created: February 2, 1994 -;; Version: 1.64.2 +;; Version of last Kifer changes: 1.64.2 ;; Keywords: comparing, merging, patching, version control. ;; This file is part of GNU Emacs. @@ -1029,19 +1029,6 @@ Commands: (setq major-mode 'ediff-mode) (setq mode-name "Ediff")) -(defvar ediff-version "1.64" - "The current version of Ediff.") -(defvar ediff-date "June 28, 1994" - "Date of last update.") - -(defun ediff-version () - "Return string describing the version of Ediff. -When called interactively, displays the version." - (interactive) - (if (interactive-p) - (message "Ediff version %s" (ediff-version)) - ediff-version)) - ;; Hook variables @@ -3408,8 +3395,6 @@ up an appropriate window config." Hit \\[ediff-recenter] to reset the windows afterward." (interactive) (with-output-to-temp-buffer " *ediff-info*" - (princ (format "Ediff version: %s of %s\n\n" - ediff-version ediff-date)) (ediff-eval-in-buffer ediff-A-buffer (if buffer-file-name (princ |