]> git.eshelyaron.com Git - emacs.git/commitdiff
Adjust comment
authorVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 20 Sep 2006 20:46:33 +0000 (20:46 +0000)
committerVinicius Jose Latorre <viniciusjl@ig.com.br>
Wed, 20 Sep 2006 20:46:33 +0000 (20:46 +0000)
lisp/ChangeLog
lisp/subr.el

index 3cdf01da119f4657ea1d566855c7e502c4f725ca..3b109a11a405b948f98bdc2b7b5640d09c575a6a 100644 (file)
@@ -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.
index 88af6f0886921b00cb3c6021570e495287ededaf..daaacaf75a1f1e5354bdea8fade3cd545eee0e92 100644 (file)
@@ -3106,8 +3106,8 @@ Usually the separator is \".\", but it can be any other string.")
 
 (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.