changeset 73028:66a5ba8082a9

Adjust comment
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Wed, 20 Sep 2006 20:46:33 +0000
parents 575850f5bd53
children 8a6d7bd59539
files lisp/ChangeLog lisp/subr.el
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Sep 20 20:00:03 2006 +0000
+++ b/lisp/ChangeLog	Wed Sep 20 20:46:33 2006 +0000
@@ -11,6 +11,8 @@
 	* lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment
 	to become an option.
 
+	* subr.el (version-regexp-alist): Adjust comment.
+
 2006-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
 	* files.el (find-buffer-visiting): Don't get fooled by a nil inode.
--- a/lisp/subr.el	Wed Sep 20 20:00:03 2006 +0000
+++ b/lisp/subr.el	Wed Sep 20 20:46:33 2006 +0000
@@ -3106,8 +3106,8 @@
 
 (defvar version-regexp-alist
   '(("^[-_+ ]?a\\(lpha\\)?$"   . -3)
-    ("^[-_+]$" . -3)	; treat "1.2.3-20050920" and "1.2-3" as alpha releases
-    ("^[-_+ ]cvs$" . -3)	; treat "1.2.3-CVS" as alpha release
+    ("^[-_+]$"                 . -3)	; treat "1.2.3-20050920" and "1.2-3" as alpha releases
+    ("^[-_+ ]cvs$"             . -3)	; treat "1.2.3-CVS" as alpha release
     ("^[-_+ ]?b\\(eta\\)?$"    . -2)
     ("^[-_+ ]?\\(pre\\|rc\\)$" . -1))
   "*Specify association between non-numeric version part and a priority.