Mercurial > hg > xemacs-beta
comparison src/fns.c @ 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 | fdefd0186b75 |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
750:f929ab5ec903 | 751:358bd84dc7ff |
---|---|
3027 if (vals) | 3027 if (vals) |
3028 UNGCPRO; | 3028 UNGCPRO; |
3029 } | 3029 } |
3030 | 3030 |
3031 DEFUN ("mapconcat", Fmapconcat, 3, 3, 0, /* | 3031 DEFUN ("mapconcat", Fmapconcat, 3, 3, 0, /* |
3032 Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. | 3032 Apply FUNCTION to each element of SEQUENCE, and concat the results to a string. |
3033 In between each pair of results, insert SEPARATOR. Thus, using " " as | 3033 Between each pair of results, insert SEPARATOR. |
3034 SEPARATOR results in spaces between the values returned by FUNCTION. | 3034 |
3035 SEQUENCE may be a list, a vector, a bit vector, or a string. | 3035 Each result, and SEPARATOR, should be strings. Thus, using " " as SEPARATOR |
3036 results in spaces between the values returned by FUNCTION. SEQUENCE itself | |
3037 may be a list, a vector, a bit vector, or a string. | |
3036 */ | 3038 */ |
3037 (function, sequence, separator)) | 3039 (function, sequence, separator)) |
3038 { | 3040 { |
3039 EMACS_INT len = XINT (Flength (sequence)); | 3041 EMACS_INT len = XINT (Flength (sequence)); |
3040 Lisp_Object *args; | 3042 Lisp_Object *args; |