aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index fb424e6aee6..865675d96ad 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1893,8 +1893,9 @@ compact_small_strings ()
1893 1893
1894 1894
1895DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0, 1895DEFUN ("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.
1897Both LENGTH and INIT must be numbers. */) 1897LENGTH must be an integer.
1898INIT 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{