diff options
| author | Richard M. Stallman | 2004-05-22 22:22:38 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-05-22 22:22:38 +0000 |
| commit | 69623621a48d6430ffc1eb2c3b9f67b839047a25 (patch) | |
| tree | 44c90de92b18682bd02671326a0402b4b8e430cf /src/alloc.c | |
| parent | 02f28bbdceb3cad843308d9ad0386ff5c492db9c (diff) | |
| download | emacs-69623621a48d6430ffc1eb2c3b9f67b839047a25.tar.gz emacs-69623621a48d6430ffc1eb2c3b9f67b839047a25.zip | |
(Fmake_string): Doc fix.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 5 |
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 | ||
| 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 | { |