aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-11-01 08:09:33 +0000
committerGlenn Morris2007-11-01 08:09:33 +0000
commit50c446333518b5b12e8590199f4529ad609bbd76 (patch)
tree54a8a2fad8a23cb725f4ec5da53623851120c372
parent91b96a0408a004e04888f50cefcc86901c263cd4 (diff)
downloademacs-50c446333518b5b12e8590199f4529ad609bbd76.tar.gz
emacs-50c446333518b5b12e8590199f4529ad609bbd76.zip
(bad-packages-alist): Add an entry for standalone vc-svn.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/simple.el10
2 files changed, 11 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f01bd382265..3fe6f30b2c8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -17,6 +17,8 @@
17 17
18 * doc-view.el (doc-view-cache-directory): Remove superfluous concat. 18 * doc-view.el (doc-view-cache-directory): Remove superfluous concat.
19 19
20 * simple.el (bad-packages-alist): Add an entry for standalone vc-svn.
21
20 * emacs-lisp/authors.el (authors-scan-change-log) 22 * emacs-lisp/authors.el (authors-scan-change-log)
21 (authors-scan-el): Don't enable local eval; enable only safe local 23 (authors-scan-el): Don't enable local eval; enable only safe local
22 variables, without querying. 24 variables, without querying.
diff --git a/lisp/simple.el b/lisp/simple.el
index 317acdaff31..23075823eff 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5855,7 +5855,15 @@ so you can now enable CUA via the Options menu or by customizing `cua-mode'.
5855 5855
5856You have loaded an older version of CUA-mode which does not work 5856You have loaded an older version of CUA-mode which does not work
5857correctly with this version of Emacs. You should remove the old 5857correctly with this version of Emacs. You should remove the old
5858version and use the one distributed with Emacs.")) 5858version and use the one distributed with Emacs.")
5859 ;; vc-svn doesn't have a version variable (do we see the limitations
5860 ;; of this approach now?), but the Emacs version uses `vc-svn-program',
5861 ;; rather than `vc-svn-program-name', hence this hack should work.
5862 (vc-svn-program-name t nil
5863"`vc-svn' is now part of the standard GNU Emacs distribution.
5864You have tried to load an older version which does not work as well with Emacs.
5865You should remove the old version and use the one distributed with Emacs."))
5866
5859 "Alist of packages known to cause problems in this version of Emacs. 5867 "Alist of packages known to cause problems in this version of Emacs.
5860Each element has the form (PACKAGE SYMBOL REGEXP STRING). 5868Each element has the form (PACKAGE SYMBOL REGEXP STRING).
5861PACKAGE is either a regular expression to match file names, or a 5869PACKAGE is either a regular expression to match file names, or a