From f0470745c4314eca6f918250a07fa9ae44cfb0a2 Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 12 Nov 1999 09:04:53 +0000 Subject: [PATCH] (constant canna-version): New constant. (canna-rcs-version): Deleted. (canna-version): Use constant `canna-version'. --- canna.el | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/canna.el b/canna.el index 639268c..bb02483 100644 --- a/canna.el +++ b/canna.el @@ -7,7 +7,7 @@ ;; Author: Akira Kon ;; MORIOKA Tomohiko ;; Stephen Turnbull -;; Version: $Revision: 1.19 $ +;; Version: $Revision: 1.20 $ ;; Keywords: Canna, Japanese, input method, mule, multilingual ;; This file is part of Emacs-Canna. @@ -59,19 +59,12 @@ ;; (defalias 'self-insert-internal 'self-insert-command) ;; end -(defconst canna-rcs-version - "$Id: canna.el,v 1.19 1999-05-24 09:07:30 morioka Exp $") +(defconst canna-version "Emacs-Canna 1.3") (defun canna-version () "Display version of canna.el in mini-buffer." (interactive) - (message (concat - (substring canna-rcs-version - 5 - (if (string-match "[0-9] [a-z]" canna-rcs-version) - (1+ (match-beginning 0)) - )) - " ..."))) + (message (concat canna-version " ..."))) (if (featurep 'xemacs) (defun canna-self-insert-string (string) -- 1.7.10.4