Mercurial > hg > xemacs-beta
changeset 3753:a452d2a78a4e
[xemacs-hg @ 2006-12-19 15:28:43 by stephent]
Document ROOT(S) arguments correctly.
<87bqlzq4o4.fsf@uwakimon.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Tue, 19 Dec 2006 15:28:45 +0000 |
parents | 7da03bc36069 |
children | 3905a5b8fe49 |
files | lisp/ChangeLog lisp/find-paths.el |
diffstat | 2 files changed, 20 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- 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 <stephen@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@parhasard.net> * mule/cyrillic.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.