From: Vinicius Jose Latorre Date: Wed, 20 Sep 2006 20:46:33 +0000 (+0000) Subject: Adjust comment X-Git-Tag: emacs-pretest-22.0.90~425 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0aad54a5a0a89c07ed00ab7d4bb8da93705aea7f;p=emacs.git Adjust comment --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3cdf01da119..3b109a11a40 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 * files.el (find-buffer-visiting): Don't get fooled by a nil inode. diff --git a/lisp/subr.el b/lisp/subr.el index 88af6f08869..daaacaf75a1 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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.