diff options
| author | Richard M. Stallman | 2007-04-07 01:52:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-04-07 01:52:16 +0000 |
| commit | 1e8f1e2fb0f4f768ca1a4139becd190c55978862 (patch) | |
| tree | 5efe063368da0b13ecc02c9c3af1d076190b4955 | |
| parent | 9232ba3d87728e55c3574c626e3d80fbae53c59e (diff) | |
| download | emacs-1e8f1e2fb0f4f768ca1a4139becd190c55978862.tar.gz emacs-1e8f1e2fb0f4f768ca1a4139becd190c55978862.zip | |
(Case Tables): Improve last change.
| -rw-r--r-- | lispref/strings.texi | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/lispref/strings.texi b/lispref/strings.texi index 788a7948b4f..af5a2fa14d3 100644 --- a/lispref/strings.texi +++ b/lispref/strings.texi | |||
| @@ -1117,17 +1117,18 @@ of an abnormal exit via @code{throw} or error (@pxref{Nonlocal | |||
| 1117 | Exits}). | 1117 | Exits}). |
| 1118 | @end defmac | 1118 | @end defmac |
| 1119 | 1119 | ||
| 1120 | Some language environments may modify the case conversions of ASCII | 1120 | Some language environments may modify the case conversions of |
| 1121 | characters; for example, in the Turkish language environment, the | 1121 | @acronym{ASCII} characters; for example, in the Turkish language |
| 1122 | ASCII character ``I'' is downcased into a Turkish ``dotless i''. This | 1122 | environment, the @acronym{ASCII} character @samp{I} is downcased into |
| 1123 | can interfere with code that requires ordinary ASCII case conversion, | 1123 | a Turkish ``dotless i''. This can interfere with code that requires |
| 1124 | such as implementations of ASCII-based network protocols. In that | 1124 | ordinary ASCII case conversion, such as implementations of |
| 1125 | case, use the @code{with-case-table} macro with the variable | 1125 | @acronym{ASCII}-based network protocols. In that case, use the |
| 1126 | @var{ascii-case-table}, which stores the unmodified case table for the | 1126 | @code{with-case-table} macro with the variable @var{ascii-case-table}, |
| 1127 | ASCII character set. | 1127 | which stores the unmodified case table for the @acronym{ASCII} |
| 1128 | character set. | ||
| 1128 | 1129 | ||
| 1129 | @defvar ascii-case-table | 1130 | @defvar ascii-case-table |
| 1130 | The case table for the ASCII character set. This should not be | 1131 | The case table for the @acronym{ASCII} character set. This should not be |
| 1131 | modified by any language environment settings. | 1132 | modified by any language environment settings. |
| 1132 | @end defvar | 1133 | @end defvar |
| 1133 | 1134 | ||