[gnus git] branch master updated: m0-7-178-g3e22372 =1= Fix previous commit

Katsumi Yamaoka <[email protected]>
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  3e2237222c94d96af5b1be03f775d886e926bfcc (commit)
      from  169184a38c9a2b29a1630bc6ad2226c78ba08d2b (commit)


- Log -----------------------------------------------------------------
commit 3e2237222c94d96af5b1be03f775d886e926bfcc
Author: Katsumi Yamaoka <[email protected]>
Date:   Tue Jul 23 07:03:58 2013 +0000

    Fix previous commit
    
    * gnus.el (gnus-continuum-version):
    * gnus-msg.el (gnus-extended-version): Simplify.
    
    * gnus.el (gnus-continuum-version-1): Remove.
    * gnus-msg.el (gnus-bug): Revert.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7bdcf06..9f62dab 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,11 @@
 2013-07-23  Katsumi Yamaoka  <[email protected]>
 
+	* gnus.el (gnus-continuum-version):
+	* gnus-msg.el (gnus-extended-version): Simplify.
+
+	* gnus.el (gnus-continuum-version-1): Remove.
+	* gnus-msg.el (gnus-bug): Revert.
+
 	Calculate gnus-version correctly on Cygwin.
 
 	* gnus.el (gnus-continuum-version): Do main calculations in integers.
diff --git a/lisp/gnus-msg.el b/lisp/gnus-msg.el
index 761156b..0f78f2e 100644
--- a/lisp/gnus-msg.el
+++ b/lisp/gnus-msg.el
@@ -1132,7 +1132,9 @@ See the variable `gnus-user-agent'."
 	   (gnus-v
 	    (when (memq 'gnus gnus-user-agent)
 	      (concat "Gnus/"
-		      (gnus-continuum-version-1 gnus-version)
+		      (gnus-replace-in-string
+		       (format "%1.8f" (gnus-continuum-version gnus-version))
+		       "0+\\'" "")
 		      " (" gnus-version ")")))
 	   (emacs-v (gnus-emacs-version)))
       (concat gnus-v (when (and gnus-v emacs-v) " ")
@@ -1534,7 +1536,7 @@ If YANK is non-nil, include the original article."
                        (X-Debbugs-Package
                         . ,(format "%s" gnus-bug-package))
                        (X-Debbugs-Version
-                        . ,(gnus-continuum-version-1)))))
+                        . ,(format "%s" (gnus-continuum-version))))))
     (when gnus-bug-create-help-buffer
       (push `(gnus-bug-kill-buffer) message-send-actions))
     (goto-char (point-min))
diff --git a/lisp/gnus.el b/lisp/gnus.el
index 358cbf9..737accd 100644
--- a/lisp/gnus.el
+++ b/lisp/gnus.el
@@ -3229,10 +3229,6 @@ If ARG, insert string at point."
 
 (defun gnus-continuum-version (&optional version)
   "Return VERSION as a floating point number."
-  (string-to-number (gnus-continuum-version-1 (or version gnus-version))))
-
-(defun gnus-continuum-version-1 (&optional version)
-  "Return VERSION as a string."
   (unless version
     (setq version gnus-version))
   (when (or (string-match "^\\([^ ]+\\)? ?Gnus v?\\([0-9.]+\\)$" version)
@@ -3248,21 +3244,18 @@ If ARG, insert string at point."
 	    least (if (match-beginning 3)
 		      (string-to-number (match-string 3 number))
 		    0))
-      (gnus-replace-in-string
+      (string-to-number
        (if (zerop major)
-	   (progn
-	     (setq major
+	     (format "%1.2f00%02d%02d"
 		   (if (member alpha '("(ding)" "d"))
-		       499
-		     (+ 500 (* 2
+			 4.99
+		       (+ 5 (* 0.02
 			       (abs
 				(- (mm-char-int (aref (downcase alpha) 0))
 				   (mm-char-int ?t))))
-			-1)))
-	     (format "%s.%s00%02d%02d"
-		     (/ major 100) (% major 100) minor least))
-	 (format "%d.%02d%02d" major minor least))
-       "0+\\'" ""))))
+			  -0.01))
+		     minor least)
+	 (format "%d.%02d%02d" major minor least))))))
 
 (defun gnus-info-find-node (&optional nodename)
   "Find Info documentation of Gnus."

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog   |    6 ++++++
 lisp/gnus-msg.el |    6 ++++--
 lisp/gnus.el     |   23 ++++++++---------------
 3 files changed, 18 insertions(+), 17 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
-- 
Gnus Project
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.