comparison src/alloc.c @ 55745:1c3b8ce97c63

(Fmake_string): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 22 May 2004 22:22:38 +0000
parents 1a56baecf37d
children ee3a30045908 50b9a96c837c
comparison
equal deleted inserted replaced
55744:dc4797dbcccd 55745:1c3b8ce97c63
1891 current_sblock = tb; 1891 current_sblock = tb;
1892 } 1892 }
1893 1893
1894 1894
1895 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0, 1895 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
1896 doc: /* Return a newly created string of length LENGTH, with each element being INIT. 1896 doc: /* Return a newly created string of length LENGTH, with INIT in each element.
1897 Both LENGTH and INIT must be numbers. */) 1897 LENGTH must be an integer.
1898 INIT must be an integer that represents a character. */)
1898 (length, init) 1899 (length, init)
1899 Lisp_Object length, init; 1900 Lisp_Object length, init;
1900 { 1901 {
1901 register Lisp_Object val; 1902 register Lisp_Object val;
1902 register unsigned char *p, *end; 1903 register unsigned char *p, *end;