From 46b0a07f2c3c16b7dc3d7ba2e73ebe9b26b3b039 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Mon, 4 Nov 2013 16:09:36 +0200 Subject: [PATCH] * lisp/subr.el (version<, version<=, version=): Update docstrings with information for snapshot versions. --- lisp/subr.el | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/lisp/subr.el b/lisp/subr.el index 05562117a51..6bcbe6b9687 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -4672,19 +4672,18 @@ 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\". Also, \"-CVS\" and \"-NNN\" are treated -as alpha versions." +which is higher than \"1alpha\", which is higher than \"1snapshot\". +Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions." (version-list-< (version-to-list v1) (version-to-list v2))) - (defun version<= (v1 v2) "Return t if version V1 is lower (older) than or equal to V2. 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\". Also, \"-CVS\" and \"-NNN\" are treated -as alpha versions." +which is higher than \"1alpha\", which is higher than \"1snapshot\". +Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions." (version-list-<= (version-to-list v1) (version-to-list v2))) (defun version= (v1 v2) @@ -4693,8 +4692,8 @@ as alpha versions." 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\". Also, \"-CVS\" and \"-NNN\" are treated -as alpha versions." +which is higher than \"1alpha\", which is higher than \"1snapshot\". +Also, \"-GIT\", \"-CVS\" and \"-NNN\" are treated as snapshot versions." (version-list-= (version-to-list v1) (version-to-list v2))) -- 2.39.2