aboutsummaryrefslogtreecommitdiffstats
path: root/lispref/sequences.texi
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-27 00:10:27 +0000
committerRichard M. Stallman2005-02-27 00:10:27 +0000
commita87ffdbca993ceed4f5355103b2536c2e50042ee (patch)
tree74de1c9321edf502f28889b8e7586760ac3ada79 /lispref/sequences.texi
parentfea5a6d51abac85d8a8b877a1c203dcac488da0c (diff)
downloademacs-a87ffdbca993ceed4f5355103b2536c2e50042ee.tar.gz
emacs-a87ffdbca993ceed4f5355103b2536c2e50042ee.zip
(Arrays): Cleanup.
(Char-Tables): Clarify.
Diffstat (limited to 'lispref/sequences.texi')
-rw-r--r--lispref/sequences.texi21
1 files changed, 11 insertions, 10 deletions
diff --git a/lispref/sequences.texi b/lispref/sequences.texi
index a9f997a5b2c..982c9ffeadd 100644
--- a/lispref/sequences.texi
+++ b/lispref/sequences.texi
@@ -252,8 +252,8 @@ The length of the array is fixed once you create it; you cannot
252change the length of an existing array. 252change the length of an existing array.
253 253
254@item 254@item
255The array is a constant, for evaluation---in other words, it evaluates 255for purposes of evaluation, the array is a constant---in other words,
256to itself. 256it evaluates to itself.
257 257
258@item 258@item
259The elements of an array may be referenced or changed with the functions 259The elements of an array may be referenced or changed with the functions
@@ -580,12 +580,12 @@ otherwise @code{nil}.
580This function returns the subtype symbol of @var{char-table}. 580This function returns the subtype symbol of @var{char-table}.
581@end defun 581@end defun
582 582
583@defun set-char-table-default char-table new-default 583@defun set-char-table-default char-table char new-default
584This function sets the default value of @var{char-table} to 584This function sets the default value of generic character @var{char}
585@var{new-default}. 585in @var{char-table} to @var{new-default}.
586 586
587There is no special function to access the default value of a char-table. 587There is no special function to access default values in a char-table.
588To do that, use @code{(char-table-range @var{char-table} nil)}. 588To do that, use @code{char-table-range} (see below).
589@end defun 589@end defun
590 590
591@defun char-table-parent char-table 591@defun char-table-parent char-table
@@ -628,9 +628,10 @@ Refers to the value specified for the whole character set
628@var{charset} (@pxref{Character Sets}). 628@var{charset} (@pxref{Character Sets}).
629 629
630@item @var{generic-char} 630@item @var{generic-char}
631A generic character stands for a character set; specifying the generic 631A generic character stands for a character set, or a row of a
632character as argument is equivalent to specifying the character set 632character set; specifying the generic character as argument is
633name. @xref{Splitting Characters}, for a description of generic characters. 633equivalent to specifying the character set name. @xref{Splitting
634Characters}, for a description of generic characters.
634@end table 635@end table
635@end defun 636@end defun
636 637