diff options
| author | Richard M. Stallman | 1994-01-22 16:13:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-22 16:13:30 +0000 |
| commit | 73d4035593591f1ddce7d2f11c03924c6cd332f2 (patch) | |
| tree | fbb86b06839eb1b44f534ce2daa2fa4afe650965 /src | |
| parent | 5b5861558c3e67cb361e46efed9b43434fee4381 (diff) | |
| download | emacs-73d4035593591f1ddce7d2f11c03924c6cd332f2.tar.gz emacs-73d4035593591f1ddce7d2f11c03924c6cd332f2.zip | |
(Faset): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index 854fa3b3de5..4d25ed3cf5e 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1312,8 +1312,8 @@ ARRAY may be a vector or a string, or a byte-code object. INDEX starts at 0.") | |||
| 1312 | } | 1312 | } |
| 1313 | 1313 | ||
| 1314 | DEFUN ("aset", Faset, Saset, 3, 3, 0, | 1314 | DEFUN ("aset", Faset, Saset, 3, 3, 0, |
| 1315 | "Store into the element of ARRAY at index INDEX the value NEWVAL.\n\ | 1315 | "Store into the element of ARRAY at index IDX the value NEWELT.\n\ |
| 1316 | ARRAY may be a vector or a string. INDEX starts at 0.") | 1316 | ARRAY may be a vector or a string. IDX starts at 0.") |
| 1317 | (array, idx, newelt) | 1317 | (array, idx, newelt) |
| 1318 | register Lisp_Object array; | 1318 | register Lisp_Object array; |
| 1319 | Lisp_Object idx, newelt; | 1319 | Lisp_Object idx, newelt; |