CVS update by stephent xemacs/lisp ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Tue Dec 19 10:28:48 EST 2006


  User: stephent
  Date: 06/12/19 16:28:48

  Modified:    xemacs/lisp ChangeLog find-paths.el
Log:
Document ROOT(S) arguments correctly.
<87bqlzq4o4.fsf at uwakimon.sk.tsukuba.ac.jp>

Revision  Changes    Path
1.782     +12 -0     XEmacs/xemacs/lisp/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.781
retrieving revision 1.782
diff -u -p -r1.781 -r1.782
--- ChangeLog	2006/12/17 13:41:33	1.781
+++ ChangeLog	2006/12/19 15:28:43	1.782
@@ -1,3 +1,15 @@
+2006-12-19  Stephen J. Turnbull  <stephen at xemacs.org>
+
+	* find-paths.el (paths-construct-emacs-directory):
+	(paths-for-each-emacs-directory):
+	(paths-find-site-directory):
+	(paths-find-site-directories):
+	(paths-for-each-version-directory):
+	(paths-find-version-directory):
+	(paths-find-version-directories):
+	(paths-find-architecture-directory):
+	Document ROOT(S) argument correctly.
+
 2006-12-17  Aidan Kehoe  <kehoea at parhasard.net>
 
 	* mule/cyrillic.el:



1.30      +8 -8      XEmacs/xemacs/lisp/find-paths.el

Index: find-paths.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/find-paths.el,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -p -r1.29 -r1.30
--- find-paths.el	2005/01/15 15:17:36	1.29
+++ find-paths.el	2006/12/19 15:28:45	1.30
@@ -126,7 +126,7 @@ to EXPAND-FILE-NAME."
 
 (defun paths-construct-emacs-directory (root suffix base)
   "Construct a directory name within the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOT must be an installation root.
 SUFFIX is the subdirectory from there.
 BASE is the base to look for."
   (file-name-as-directory
@@ -211,7 +211,7 @@ the directory."
   "Iterate over the site-specific directories in the XEmacs hierarchy.
 FUNC is a function that called for each directory, with the directory
 as the only argument.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -227,7 +227,7 @@ DEFAULT is the preferred value."
 
 (defun paths-find-site-directory (roots base &optional envvar default)
   "Find a site-specific directory in the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -240,7 +240,7 @@ DEFAULT is the preferred value."
 
 (defun paths-find-site-directories (roots base &optional envvar default)
   "Find a list of site-specific directories in the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -257,7 +257,7 @@ DEFAULT is the preferred value."
   "Iterate over version-specific directories in the XEmacs hierarchy.
 FUNC is a function that called for each directory, with the directory
 as the only argument.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -275,7 +275,7 @@ If ENFORCE-VERSION is non-nil, the direc
 (defun paths-find-version-directory (roots base
 				     &optional envvar default enforce-version)
   "Find a version-specific directory in the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -290,7 +290,7 @@ If ENFORCE-VERSION is non-nil, the direc
 (defun paths-find-version-directories (roots base
 				       &optional envvar default enforce-version)
   "Find a list of version-specific directories in the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.
@@ -305,7 +305,7 @@ If ENFORCE-VERSION is non-nil, the direc
 
 (defun paths-find-architecture-directory (roots base &optional envvar default)
   "Find an architecture-specific directory in the XEmacs hierarchy.
-ROOT must be a an installation root.
+ROOTS must be a list of installation roots.
 BASE is the base to look for.
 ENVVAR is the name of the environment variable that might also
 specify the directory.





More information about the XEmacs-CVS mailing list