diff options
| author | Richard M. Stallman | 2000-01-20 18:18:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2000-01-20 18:18:58 +0000 |
| commit | 757081353df933080416901d87c28fc0237ab5ea (patch) | |
| tree | c8a0babbe65742a25513e1b931e5883fc590f35b /lispref/objects.texi | |
| parent | caccdcbb25c7fd120997c8c7d619a6ab8f072beb (diff) | |
| download | emacs-757081353df933080416901d87c28fc0237ab5ea.tar.gz emacs-757081353df933080416901d87c28fc0237ab5ea.zip | |
*** empty log message ***
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 7aa2538947f..6d252685f42 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -227,8 +227,8 @@ characters. @xref{String Type}. | |||
| 227 | 227 | ||
| 228 | Characters in strings, buffers, and files are currently limited to the | 228 | Characters in strings, buffers, and files are currently limited to the |
| 229 | range of 0 to 524287---nineteen bits. But not all values in that range | 229 | range of 0 to 524287---nineteen bits. But not all values in that range |
| 230 | are valid character codes. Codes 0 through 127 are ASCII codes; the | 230 | are valid character codes. Codes 0 through 127 are @sc{ascii} codes; the |
| 231 | rest are non-ASCII (@pxref{Non-ASCII Characters}). Characters that represent | 231 | rest are non-@sc{ascii} (@pxref{Non-ASCII Characters}). Characters that represent |
| 232 | keyboard input have a much wider range, to encode modifier keys such as | 232 | keyboard input have a much wider range, to encode modifier keys such as |
| 233 | Control, Meta and Shift. | 233 | Control, Meta and Shift. |
| 234 | 234 | ||
| @@ -369,7 +369,7 @@ of basic character codes. | |||
| 369 | @ifnottex | 369 | @ifnottex |
| 370 | 2**7 | 370 | 2**7 |
| 371 | @end ifnottex | 371 | @end ifnottex |
| 372 | bit attached to an ASCII character indicates a meta character; thus, the | 372 | bit attached to an @sc{ascii} character indicates a meta character; thus, the |
| 373 | meta characters that can fit in a string have codes in the range from | 373 | meta characters that can fit in a string have codes in the range from |
| 374 | 128 to 255, and are the meta versions of the ordinary @sc{ascii} | 374 | 128 to 255, and are the meta versions of the ordinary @sc{ascii} |
| 375 | characters. (In Emacs versions 18 and older, this convention was used | 375 | characters. (In Emacs versions 18 and older, this convention was used |
| @@ -897,7 +897,7 @@ but the newline is ignored if escaped." | |||
| 897 | @end example | 897 | @end example |
| 898 | 898 | ||
| 899 | @node Non-ASCII in Strings | 899 | @node Non-ASCII in Strings |
| 900 | @subsubsection Non-ASCII Characters in Strings | 900 | @subsubsection Non-@sc{ascii} Characters in Strings |
| 901 | 901 | ||
| 902 | You can include a non-@sc{ascii} international character in a string | 902 | You can include a non-@sc{ascii} international character in a string |
| 903 | constant by writing it literally. There are two text representations | 903 | constant by writing it literally. There are two text representations |