diff options
| author | Glenn Morris | 2018-02-20 07:50:29 -0800 |
|---|---|---|
| committer | Glenn Morris | 2018-02-20 07:50:29 -0800 |
| commit | 650febcd3ec1cfe0c686414c9c8f1a7caaeefe71 (patch) | |
| tree | 534fc96cc86b769db3e2124b347b7be5e155d94d /src | |
| parent | 3d42272754db914d4f2dbbcfba5ce6776a7b232b (diff) | |
| parent | 226aca32a784c4edebdec6a16eb90930aae64c06 (diff) | |
| download | emacs-650febcd3ec1cfe0c686414c9c8f1a7caaeefe71.tar.gz emacs-650febcd3ec1cfe0c686414c9c8f1a7caaeefe71.zip | |
Merge from origin/emacs-26
226aca3 (origin/emacs-26) Fix documentation of 'flyspell-auto-correct...
a8c8434 * doc/emacs/misc.texi (Saving Emacs Sessions): Fix markup.
275e735 More changes in the Emacs manuals
d962be5 More fixes in the Emacs manual
6dc2846 * src/data.c (Faref): Fix a typo in the doc string. (Bug#30510)
36e729f Minor edit in tramp.texi
6537f99 ; Fix oversight from last commit
eb94588 ; * doc/emacs/maintaining.texi: Fix two typos.
258135f More improvements in the Emacs manual
f138bca Improve documentation of 'electric-pair-mode'
f74ab96 ; Spelling and grammar fixes.
42f9dc4 ; * lisp/textmodes/flyspell.el (flyspell-auto-correct-word): ...
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 72abfefb01f..62b3fcfeb24 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -2271,8 +2271,8 @@ function chain of symbols. */) | |||
| 2271 | /* Extract and set vector and string elements. */ | 2271 | /* Extract and set vector and string elements. */ |
| 2272 | 2272 | ||
| 2273 | DEFUN ("aref", Faref, Saref, 2, 2, 0, | 2273 | DEFUN ("aref", Faref, Saref, 2, 2, 0, |
| 2274 | doc: /* Return the element of ARG at index IDX. | 2274 | doc: /* Return the element of ARRAY at index IDX. |
| 2275 | ARG may be a vector, a string, a char-table, a bool-vector, a record, | 2275 | ARRAY may be a vector, a string, a char-table, a bool-vector, a record, |
| 2276 | or a byte-code object. IDX starts at 0. */) | 2276 | or a byte-code object. IDX starts at 0. */) |
| 2277 | (register Lisp_Object array, Lisp_Object idx) | 2277 | (register Lisp_Object array, Lisp_Object idx) |
| 2278 | { | 2278 | { |