aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinicius Jose Latorre2006-09-20 20:46:33 +0000
committerVinicius Jose Latorre2006-09-20 20:46:33 +0000
commit0aad54a5a0a89c07ed00ab7d4bb8da93705aea7f (patch)
tree11ce30e808f52587264c0ba9dd43e8c26163300f
parent502ca00a6b02697c6e7c1ce057ebbd59c4b1c01c (diff)
downloademacs-0aad54a5a0a89c07ed00ab7d4bb8da93705aea7f.tar.gz
emacs-0aad54a5a0a89c07ed00ab7d4bb8da93705aea7f.zip
Adjust comment
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/subr.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3cdf01da119..3b109a11a40 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -11,6 +11,8 @@
11 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment 11 * lpr.el (lpr-page-header-switches): Insert `*' at beginning of comment
12 to become an option. 12 to become an option.
13 13
14 * subr.el (version-regexp-alist): Adjust comment.
15
142006-09-20 Stefan Monnier <monnier@iro.umontreal.ca> 162006-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
15 17
16 * files.el (find-buffer-visiting): Don't get fooled by a nil inode. 18 * 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.")
3106 3106
3107(defvar version-regexp-alist 3107(defvar version-regexp-alist
3108 '(("^[-_+ ]?a\\(lpha\\)?$" . -3) 3108 '(("^[-_+ ]?a\\(lpha\\)?$" . -3)
3109 ("^[-_+]$" . -3) ; treat "1.2.3-20050920" and "1.2-3" as alpha releases 3109 ("^[-_+]$" . -3) ; treat "1.2.3-20050920" and "1.2-3" as alpha releases
3110 ("^[-_+ ]cvs$" . -3) ; treat "1.2.3-CVS" as alpha release 3110 ("^[-_+ ]cvs$" . -3) ; treat "1.2.3-CVS" as alpha release
3111 ("^[-_+ ]?b\\(eta\\)?$" . -2) 3111 ("^[-_+ ]?b\\(eta\\)?$" . -2)
3112 ("^[-_+ ]?\\(pre\\|rc\\)$" . -1)) 3112 ("^[-_+ ]?\\(pre\\|rc\\)$" . -1))
3113 "*Specify association between non-numeric version part and a priority. 3113 "*Specify association between non-numeric version part and a priority.