]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_string): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Sat, 22 May 2004 22:22:38 +0000 (22:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 22 May 2004 22:22:38 +0000 (22:22 +0000)
src/alloc.c

index fb424e6aee61faca64193580a6737b516875cda2..865675d96ad57644d8a192c87ec33fc6aa852d56 100644 (file)
@@ -1893,8 +1893,9 @@ compact_small_strings ()
 
 
 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;
 {