diff options
| author | Richard M. Stallman | 1997-05-29 00:14:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-05-29 00:14:20 +0000 |
| commit | 9346f5077fab5b04871c50717f1bb995eeedb778 (patch) | |
| tree | dadbda539d15707d5ece5984aa454ff5d5a06f98 /src | |
| parent | 41ab2240901e091dd07a2bac78a38a95454a6521 (diff) | |
| download | emacs-9346f5077fab5b04871c50717f1bb995eeedb778.tar.gz emacs-9346f5077fab5b04871c50717f1bb995eeedb778.zip | |
(Faset): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 1e0b3da35ad..c84b137b5d6 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1635,7 +1635,8 @@ or a byte-code object. IDX starts at 0.") | |||
| 1635 | 1635 | ||
| 1636 | DEFUN ("aset", Faset, Saset, 3, 3, 0, | 1636 | DEFUN ("aset", Faset, Saset, 3, 3, 0, |
| 1637 | "Store into the element of ARRAY at index IDX the value NEWELT.\n\ | 1637 | "Store into the element of ARRAY at index IDX the value NEWELT.\n\ |
| 1638 | ARRAY may be a vector or a string. IDX starts at 0.") | 1638 | ARRAY may be a vector, a string, a char-table or a bool-vector.\n\ |
| 1639 | IDX starts at 0.") | ||
| 1639 | (array, idx, newelt) | 1640 | (array, idx, newelt) |
| 1640 | register Lisp_Object array; | 1641 | register Lisp_Object array; |
| 1641 | Lisp_Object idx, newelt; | 1642 | Lisp_Object idx, newelt; |