diff options
| author | Eli Zaretskii | 2018-02-18 18:36:11 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2018-02-18 18:36:11 +0200 |
| commit | 6dc2846a2d6432648e88f76ab0946a4534b81bc0 (patch) | |
| tree | 7931b0eb615718b83cd24941c2e36cdeb80143f0 /src/data.c | |
| parent | 36e729f06cddd2a02fba15516f43f4c1a53bab55 (diff) | |
| download | emacs-6dc2846a2d6432648e88f76ab0946a4534b81bc0.tar.gz emacs-6dc2846a2d6432648e88f76ab0946a4534b81bc0.zip | |
* src/data.c (Faref): Fix a typo in the doc string. (Bug#30510)
Diffstat (limited to 'src/data.c')
| -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 53a92ac03bb..45b2bf73026 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2272,8 +2272,8 @@ function chain of symbols. */) | |||
| 2272 | /* Extract and set vector and string elements. */ | 2272 | /* Extract and set vector and string elements. */ |
| 2273 | 2273 | ||
| 2274 | DEFUN ("aref", Faref, Saref, 2, 2, 0, | 2274 | DEFUN ("aref", Faref, Saref, 2, 2, 0, |
| 2275 | doc: /* Return the element of ARG at index IDX. | 2275 | doc: /* Return the element of ARRAY at index IDX. |
| 2276 | ARG may be a vector, a string, a char-table, a bool-vector, a record, | 2276 | ARRAY may be a vector, a string, a char-table, a bool-vector, a record, |
| 2277 | or a byte-code object. IDX starts at 0. */) | 2277 | or a byte-code object. IDX starts at 0. */) |
| 2278 | (register Lisp_Object array, Lisp_Object idx) | 2278 | (register Lisp_Object array, Lisp_Object idx) |
| 2279 | { | 2279 | { |