changeset 55745:1c3b8ce97c63

(Fmake_string): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 22 May 2004 22:22:38 +0000
parents dc4797dbcccd
children e3f64aa0875d
files src/alloc.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloc.c	Sat May 22 22:20:51 2004 +0000
+++ b/src/alloc.c	Sat May 22 22:22:38 2004 +0000
@@ -1893,8 +1893,9 @@
 
 
 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
-       doc: /* Return a newly created string of length LENGTH, with each element being INIT.
-Both LENGTH and INIT must be numbers.  */)
+       doc: /* Return a newly created string of length LENGTH, with INIT in each element.
+LENGTH must be an integer.
+INIT must be an integer that represents a character.  */)
      (length, init)
      Lisp_Object length, init;
 {