User: scop
Date: 06/03/06 14:28:33
Modified: packages/xemacs-packages/jde/lisp ChangeLog jde-plugins.el
Log:
Don't treat "CVS" as a plugin that should be loaded.
Revision Changes Path
1.14 +5 -0 XEmacs/packages/xemacs-packages/jde/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/jde/lisp/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- ChangeLog 2006/03/03 20:42:35 1.13
+++ ChangeLog 2006/03/06 13:28:33 1.14
@@ -1,3 +1,8 @@
+2006-03-06 Ville Skyttä <scop(a)xemacs.org>
+
+ * jde-plugins.el (jde-pi-load-plugins): Exclude "CVS", it
+ interferes when building the package from CVS.
+
2005-06-01 Ville Skyttä <scop(a)xemacs.org>
* jde-java-font-lock.el (jde-java-font-lock-setup-keywords):
1.2 +2 -0 XEmacs/packages/xemacs-packages/jde/lisp/jde-plugins.el
Index: jde-plugins.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/packages/xemacs-packages/jde/lisp/jde-plugins.el,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- jde-plugins.el 2006/03/03 20:42:40 1.1
+++ jde-plugins.el 2006/03/06 13:28:33 1.2
@@ -96,6 +96,8 @@ a file named jde-PLUGIN.el. This functio
(let ((file-name (file-name-nondirectory file)))
(if (and
(file-directory-p file)
+ ;; XEmacs change: "CVS" interferes with package build
+ (not (string= file-name "CVS"))
(not (string= file-name "."))
(not (string= file-name "..")))
file-name)))
Show replies by date