diff options
| author | Eli Zaretskii | 2015-09-14 13:04:12 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2015-09-14 13:04:12 +0300 |
| commit | 48f3aa93ae682a17e0dbc1d5ca6fa2fb26821bb9 (patch) | |
| tree | d16befb66665be44c21ce2a12c820512899e2cc7 | |
| parent | e348a668cec6b49030aef5a1c48abd64a373645e (diff) | |
| download | emacs-48f3aa93ae682a17e0dbc1d5ca6fa2fb26821bb9.tar.gz emacs-48f3aa93ae682a17e0dbc1d5ca6fa2fb26821bb9.zip | |
Clarify documentation of char-table extra slots
* doc/lispref/sequences.texi (Char-Tables): Clarify that extra
slot numbers are zero-based. (Bug#21467)
| -rw-r--r-- | doc/lispref/sequences.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi index d0190457179..18120dad575 100644 --- a/doc/lispref/sequences.texi +++ b/doc/lispref/sequences.texi | |||
| @@ -1276,13 +1276,13 @@ This function sets the parent of @var{char-table} to @var{new-parent}. | |||
| 1276 | @end defun | 1276 | @end defun |
| 1277 | 1277 | ||
| 1278 | @defun char-table-extra-slot char-table n | 1278 | @defun char-table-extra-slot char-table n |
| 1279 | This function returns the contents of extra slot @var{n} of | 1279 | This function returns the contents of extra slot @var{n} (zero based) |
| 1280 | @var{char-table}. The number of extra slots in a char-table is | 1280 | of @var{char-table}. The number of extra slots in a char-table is |
| 1281 | determined by its subtype. | 1281 | determined by its subtype. |
| 1282 | @end defun | 1282 | @end defun |
| 1283 | 1283 | ||
| 1284 | @defun set-char-table-extra-slot char-table n value | 1284 | @defun set-char-table-extra-slot char-table n value |
| 1285 | This function stores @var{value} in extra slot @var{n} of | 1285 | This function stores @var{value} in extra slot @var{n} (zero based) of |
| 1286 | @var{char-table}. | 1286 | @var{char-table}. |
| 1287 | @end defun | 1287 | @end defun |
| 1288 | 1288 | ||