]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/subr.el (version-*): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Thu, 14 Jul 2011 06:50:21 +0000 (02:50 -0400)
committerEli Zaretskii <eliz@gnu.org>
Thu, 14 Jul 2011 06:50:21 +0000 (02:50 -0400)
 lisp/subr.el (version<, version<=, version=): Mention "-CVS" and
 "-12345" alpha version numbers.

lisp/ChangeLog
lisp/subr.el

index 6d6529313287f8a7a3bb838cfd5c45f3bd8f533a..7f86e6ef53ff54d14c043dca6979c0ed4d088755 100644 (file)
@@ -1,3 +1,8 @@
+2011-07-14  Eli Zaretskii  <eliz@gnu.org>
+
+       * subr.el (version<, version<=, version=): Mention "-CVS" and
+       "-12345" alpha version numbers.
+
 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
 
        * bindings.el: Add advertised binding for set-mark-command
index 5c890eefa299597c0ed02af8cfe56d478fed67f0..94b28c007d1ae9ddfcebc1c77644129c89bd1ff6 100644 (file)
@@ -4087,7 +4087,8 @@ If all LST elements are zeros or LST is nil, return zero."
 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 @@ which is higher than \"1alpha\"."
 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 @@ which is higher than \"1alpha\"."
 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)))
 
 \f