emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105190: lisp/subr.el (version-*): Do


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105190: lisp/subr.el (version-*): Doc fix.
Date: Thu, 14 Jul 2011 02:50:21 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105190
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2011-07-14 02:50:21 -0400
message:
  lisp/subr.el (version-*): Doc fix.
  
   lisp/subr.el (version<, version<=, version=): Mention "-CVS" and
   "-12345" alpha version numbers.
modified:
  lisp/ChangeLog
  lisp/subr.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-07-14 01:58:51 +0000
+++ b/lisp/ChangeLog    2011-07-14 06:50:21 +0000
@@ -1,3 +1,8 @@
+2011-07-14  Eli Zaretskii  <address@hidden>
+
+       * subr.el (version<, version<=, version=): Mention "-CVS" and
+       "-12345" alpha version numbers.
+
 2011-07-14  Chong Yidong  <address@hidden>
 
        * bindings.el: Add advertised binding for set-mark-command

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2011-07-13 23:40:11 +0000
+++ b/lisp/subr.el      2011-07-14 06:50:21 +0000
@@ -4087,7 +4087,8 @@
 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
 etc.  That is, the trailing \".0\"s are insignificant.  Also, version
 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
-which is higher than \"1alpha\"."
+which is higher than \"1alpha\".  Also, \"-CVS\" and \"-NNN\" are treated
+as alpha versions."
   (version-list-< (version-to-list v1) (version-to-list v2)))
 
 
@@ -4097,7 +4098,8 @@
 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
 etc.  That is, the trailing \".0\"s are insignificant.  Also, version
 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
-which is higher than \"1alpha\"."
+which is higher than \"1alpha\".  Also, \"-CVS\" and \"-NNN\" are treated
+as alpha versions."
   (version-list-<= (version-to-list v1) (version-to-list v2)))
 
 (defun version= (v1 v2)
@@ -4106,7 +4108,8 @@
 Note that version string \"1\" is equal to \"1.0\", \"1.0.0\", \"1.0.0.0\",
 etc.  That is, the trailing \".0\"s are insignificant.  Also, version
 string \"1\" is higher (newer) than \"1pre\", which is higher than \"1beta\",
-which is higher than \"1alpha\"."
+which is higher than \"1alpha\".  Also, \"-CVS\" and \"-NNN\" are treated
+as alpha versions."
   (version-list-= (version-to-list v1) (version-to-list v2)))
 
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]