aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBozhidar Batsov2013-11-15 12:02:13 +0200
committerBozhidar Batsov2013-11-15 12:02:13 +0200
commita3fed6ffab8a4fff50bd162728be0f1d79d14663 (patch)
tree2f3f39518f6620cf3dffcfe44c835acefc40c504
parent8e4af24017dd03ca82ee1933a45221314c743aff (diff)
downloademacs-a3fed6ffab8a4fff50bd162728be0f1d79d14663.tar.gz
emacs-a3fed6ffab8a4fff50bd162728be0f1d79d14663.zip
* lisp/subr.el (version-regexp-alist): Fix a typo.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 322934fac8c..a8e807adc1c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12013-11-15 Bozhidar Batsov <bozhidar@batsov.com>
2
3 * subr.el (version-regexp-alist): Fix a typo.
4
12013-11-15 Michael Albinus <michael.albinus@gmx.de> 52013-11-15 Michael Albinus <michael.albinus@gmx.de>
2 6
3 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to 7 * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
diff --git a/lisp/subr.el b/lisp/subr.el
index 612638fcf20..31798b44849 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -4477,7 +4477,7 @@ Usually the separator is \".\", but it can be any other string.")
4477 ("^[-_+ ]?\\(cvs\\|git\\|bzr\\|svn\\|hg\\|darcs\\)$" . -4) 4477 ("^[-_+ ]?\\(cvs\\|git\\|bzr\\|svn\\|hg\\|darcs\\)$" . -4)
4478 ("^[-_+ ]?alpha$" . -3) 4478 ("^[-_+ ]?alpha$" . -3)
4479 ("^[-_+ ]?beta$" . -2) 4479 ("^[-_+ ]?beta$" . -2)
4480 ("^[-_+ ]?\\(pre\\|rcc\\)$" . -1)) 4480 ("^[-_+ ]?\\(pre\\|rc\\)$" . -1))
4481 "Specify association between non-numeric version and its priority. 4481 "Specify association between non-numeric version and its priority.
4482 4482
4483This association is used to handle version string like \"1.0pre2\", 4483This association is used to handle version string like \"1.0pre2\",