aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman2004-05-22 22:22:38 +0000
committerRichard M. Stallman2004-05-22 22:22:38 +0000
commit69623621a48d6430ffc1eb2c3b9f67b839047a25 (patch)
tree44c90de92b18682bd02671326a0402b4b8e430cf /src/alloc.c
parent02f28bbdceb3cad843308d9ad0386ff5c492db9c (diff)
downloademacs-69623621a48d6430ffc1eb2c3b9f67b839047a25.tar.gz
emacs-69623621a48d6430ffc1eb2c3b9f67b839047a25.zip
(Fmake_string): Doc fix.
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{