Mercurial > hg > xemacs-beta
changeset 751:358bd84dc7ff
[xemacs-hg @ 2002-02-13 12:55:38 by stephent]
docstring fixes <878z9x1r2u.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Wed, 13 Feb 2002 12:55:40 +0000 |
parents | f929ab5ec903 |
children | 5d60b99c1ded |
files | src/ChangeLog src/fileio.c src/fns.c |
diffstat | 3 files changed, 16 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Wed Feb 13 12:52:03 2002 +0000 +++ b/src/ChangeLog Wed Feb 13 12:55:40 2002 +0000 @@ -1,3 +1,11 @@ +2002-02-12 Stephen J. Turnbull <stephen@xemacs.org> + + * fileio.c (Ffind_file_name_handler): Improve docstring. + +2002-01-20 Stephen J. Turnbull <stephen@xemacs.org> + + * fns.c (Fmapconcat): Improve docstring. + 2002-01-03 Eric Gillespie, Jr. <epg@pretzelnet.org> * device-gtk.c: Add prototype for
--- a/src/fileio.c Wed Feb 13 12:52:03 2002 +0000 +++ b/src/fileio.c Wed Feb 13 12:55:40 2002 +0000 @@ -296,6 +296,8 @@ any handlers that are members of `inhibit-file-name-handlers', but we still do run any other handlers. This lets handlers use the standard functions without calling themselves recursively. + +Otherwise, OPERATION is the name of a funcall'able function. */ (filename, operation)) {
--- a/src/fns.c Wed Feb 13 12:52:03 2002 +0000 +++ b/src/fns.c Wed Feb 13 12:55:40 2002 +0000 @@ -3029,10 +3029,12 @@ } DEFUN ("mapconcat", Fmapconcat, 3, 3, 0, /* -Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. -In between each pair of results, insert SEPARATOR. Thus, using " " as -SEPARATOR results in spaces between the values returned by FUNCTION. -SEQUENCE may be a list, a vector, a bit vector, or a string. +Apply FUNCTION to each element of SEQUENCE, and concat the results to a string. +Between each pair of results, insert SEPARATOR. + +Each result, and SEPARATOR, should be strings. Thus, using " " as SEPARATOR +results in spaces between the values returned by FUNCTION. SEQUENCE itself +may be a list, a vector, a bit vector, or a string. */ (function, sequence, separator)) {