aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-03 03:08:46 +0000
committerGlenn Morris2007-11-03 03:08:46 +0000
commite2f953832a310bd9a81caaa1e020198c8be15e96 (patch)
treedaa920c4d0d36140d8ded8081d8c59a58d627da6
parentd85b2f1e851dd703f60dcb473c7cbb62f201bc7e (diff)
downloademacs-e2f953832a310bd9a81caaa1e020198c8be15e96.tar.gz
emacs-e2f953832a310bd9a81caaa1e020198c8be15e96.zip
Ulrich Mueller <ulm at gentoo.org> (tiny change)
(bad-packages-alist): Anchor semantic regexp.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/simple.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index dd5ab69e37c..4cf229d2838 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-03 Ulrich Mueller <ulm@gentoo.org> (tiny change)
2
3 * simple.el (bad-packages-alist): Anchor semantic regexp.
4
12007-11-02 Drake Wilson <drake@begriffli.ch> (tiny change) 52007-11-02 Drake Wilson <drake@begriffli.ch> (tiny change)
2 6
3 * files.el (hack-local-variables): Fix membership tests to avoid 7 * files.el (hack-local-variables): Fix membership tests to avoid
diff --git a/lisp/simple.el b/lisp/simple.el
index e1cf249f01c..551c93b773a 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5633,7 +5633,7 @@ works by saving the value of `buffer-invisibility-spec' and setting it to nil."
5633(defconst bad-packages-alist 5633(defconst bad-packages-alist
5634 ;; Not sure exactly which semantic versions have problems. 5634 ;; Not sure exactly which semantic versions have problems.
5635 ;; Definitely 2.0pre3, probably all 2.0pre's before this. 5635 ;; Definitely 2.0pre3, probably all 2.0pre's before this.
5636 '((semantic semantic-version "2\\.0pre[1-3]" 5636 '((semantic semantic-version "\\`2\\.0pre[1-3]\\'"
5637 "The version of `semantic' loaded does not work in Emacs 22. 5637 "The version of `semantic' loaded does not work in Emacs 22.
5638It can cause constant high CPU load. 5638It can cause constant high CPU load.
5639Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).") 5639Upgrade to at least Semantic 2.0pre4 (distributed with CEDET 1.0pre4).")