diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-17 23:15:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-17 23:15:41 +0000 |
commit | c0b3fe998cd37fc928e89431c1e712975dff5bdc (patch) | |
tree | c448715a44cb4d854d19f58e1c30a58306138535 /lispref | |
parent | a85da0edd85a67628ad8251a77751fbd1048fc64 (diff) | |
download | emacs-c0b3fe998cd37fc928e89431c1e712975dff5bdc.tar.gz |
*** empty log message ***
Diffstat (limited to 'lispref')
-rw-r--r-- | lispref/strings.texi | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index efca7aeea62..1a25085aee7 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi @@ -743,12 +743,13 @@ equivalence class (of characters with the same canonical equivalent). @samp{A} into @samp{a}, and likewise for each set of equivalent characters.) - When you construct a case table, you can provide @code{nil} for both -@var{canonicalize} and @var{equivalences}. When you specify the case -table for use, Emacs fills in these strings, computing them from -@var{upcase} and @var{downcase}. In a case table that is actually in -use, those components are non-@code{nil}. Do not try to make just one -of these components @code{nil}; that is not meaningful. + When you construct a case table, you can provide @code{nil} for +@var{canonicalize}; then Emacs fills in this string from @var{upcase} +and @var{downcase}. You can also provide @code{nil} for +@var{equivalences}; then Emacs fills in this string from +@var{canonicalize}. In a case table that is actually in use, those +components are non-@code{nil}. Do not try to specify @var{equivalences} +without also specifying @var{canonicalize}. Each buffer has a case table. Emacs also has a @dfn{standard case table} which is copied into each buffer when you create the buffer. |