# HG changeset patch # User stephent # Date 1166542125 0 # Node ID a452d2a78a4e2dd8e86faf92831cd8b7606ccd3f # Parent 7da03bc360698601fc42a6ca7c2311d5e7254ec1 [xemacs-hg @ 2006-12-19 15:28:43 by stephent] Document ROOT(S) arguments correctly. <87bqlzq4o4.fsf@uwakimon.sk.tsukuba.ac.jp> diff -r 7da03bc36069 -r a452d2a78a4e lisp/ChangeLog --- a/lisp/ChangeLog Tue Dec 19 15:24:13 2006 +0000 +++ b/lisp/ChangeLog Tue Dec 19 15:28:45 2006 +0000 @@ -1,3 +1,15 @@ +2006-12-19 Stephen J. Turnbull + + * 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 * mule/cyrillic.el: diff -r 7da03bc36069 -r a452d2a78a4e lisp/find-paths.el --- a/lisp/find-paths.el Tue Dec 19 15:24:13 2006 +0000 +++ b/lisp/find-paths.el Tue Dec 19 15:28:45 2006 +0000 @@ -126,7 +126,7 @@ (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 @@ "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 @@ (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 @@ (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 @@ "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 @@ (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 @@ (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 @@ (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.