CVS update by michaels xemacs/lisp ...
xemacs-cvs at xemacs.org
xemacs-cvs at xemacs.org
Mon Feb 5 10:19:19 EST 2007
User: michaels
Date: 07/02/05 16:19:19
Modified: xemacs/lisp ChangeLog setup-paths.el
Log:
2007-01-27 Mike Sperber <mike at xemacs.org>
* setup-paths.el (paths-module-load-path-depth): Add.
* setup-paths.el (paths-construct-module-load-path): For
`module-load-path', use `paths-module-load-path-depth', not
`paths-core-load-path-depth'.
Revision Changes Path
1.785 +7 -0 XEmacs/xemacs/lisp/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.784
retrieving revision 1.785
diff -u -p -r1.784 -r1.785
--- ChangeLog 2006/12/30 17:04:26 1.784
+++ ChangeLog 2007/02/05 15:19:17 1.785
@@ -1,3 +1,10 @@
+2007-01-27 Mike Sperber <mike at xemacs.org>
+
+ * setup-paths.el (paths-module-load-path-depth): Add.
+ * setup-paths.el (paths-construct-module-load-path): For
+ `module-load-path', use `paths-module-load-path-depth', not
+ `paths-core-load-path-depth'.
+
2006-12-30 Aidan Kehoe <kehoea at parhasard.net>
* mule/cyrillic.el ("Cyrillic-ISO"):
1.23 +4 -1 XEmacs/xemacs/lisp/setup-paths.el
Index: setup-paths.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/setup-paths.el,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -p -r1.22 -r1.23
--- setup-paths.el 2006/03/14 00:09:03 1.22
+++ setup-paths.el 2007/02/05 15:19:18 1.23
@@ -55,6 +55,9 @@
(defvar paths-mule-load-path-depth 0
"Depth of load-path searches in Mule Lisp paths.")
+(defvar paths-module-load-path-depth 1
+ "Depth of load-path searches in module paths.")
+
(defvar paths-default-info-directories
(mapcar (function
(lambda (dirlist)
@@ -243,7 +246,7 @@ only in Mule installations."
(module-load-path
(and module-directory
(paths-find-recursive-load-path (list module-directory)
- paths-core-load-path-depth))))
+ paths-module-load-path-depth))))
(append env-module-path
site-module-load-path
module-load-path)))
More information about the XEmacs-CVS
mailing list