diff options
| author | Karoly Lorentey | 2006-06-27 15:06:36 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2006-06-27 15:06:36 +0000 |
| commit | 556b89447234f15d1784a23dadbfe429464463a8 (patch) | |
| tree | d5b94bbdde7b399bb0ffdf03a01f3e8398ee0afa /lispref/objects.texi | |
| parent | 476e9367ec1f440aa23904b7bc482ea4a3b8041c (diff) | |
| parent | 08b1eb21d5a3f935eb245acf0844a19acc42f57c (diff) | |
| download | emacs-556b89447234f15d1784a23dadbfe429464463a8.tar.gz emacs-556b89447234f15d1784a23dadbfe429464463a8.zip | |
Merged from emacs@sv.gnu.org
Patches applied:
* emacs@sv.gnu.org/emacs--devo--0--patch-305
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-306
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-307
Update from CVS: lispref/display.texi (Forcing Redisplay): Fix typo.
* emacs@sv.gnu.org/emacs--devo--0--patch-308
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-309
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-310
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-311
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-312
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-313
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-314
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-315
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-316
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-317
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-318
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-319
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-320
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-321
Merge from gnus--rel--5.10
* emacs@sv.gnu.org/emacs--devo--0--patch-322
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-323
lisp/play/cookie1.el (cookie): Work properly when there's only one entry
* emacs@sv.gnu.org/emacs--devo--0--patch-324
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-325
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-326
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-327
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-328
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-329
Update from CVS
* emacs@sv.gnu.org/emacs--devo--0--patch-330
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-105
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-106
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-107
Update from CVS
* emacs@sv.gnu.org/gnus--rel--5.10--patch-108
Merge from emacs--devo--0
* emacs@sv.gnu.org/gnus--rel--5.10--patch-109
Clean up merge mistakes
* emacs@sv.gnu.org/gnus--rel--5.10--patch-110
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-571
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 688fd0be398..ec4f30076c4 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -438,11 +438,12 @@ the Unicode code point @samp{U+@var{nnnn}}. There is a slightly | |||
| 438 | different syntax for specifying characters with code points above | 438 | different syntax for specifying characters with code points above |
| 439 | @code{#xFFFF}; @code{\U00@var{nnnnnn}} represents the character whose | 439 | @code{#xFFFF}; @code{\U00@var{nnnnnn}} represents the character whose |
| 440 | Unicode code point is @samp{U+@var{nnnnnn}}, if such a character | 440 | Unicode code point is @samp{U+@var{nnnnnn}}, if such a character |
| 441 | is supported by Emacs. | 441 | is supported by Emacs. If the corresponding character is not |
| 442 | supported, Emacs signals an error. | ||
| 442 | 443 | ||
| 443 | Unlike in some other programming languages, in Emacs Lisp this | 444 | This peculiar and inconvenient syntax was adopted for compatibility |
| 444 | syntax is available for character literals, and (see later) in | 445 | with other programming languages. Unlike some other languages, Emacs |
| 445 | strings, but not elsewhere. | 446 | Lisp supports this syntax in only character literals and strings. |
| 446 | 447 | ||
| 447 | @cindex @samp{\} in character constant | 448 | @cindex @samp{\} in character constant |
| 448 | @cindex backslash in character constant | 449 | @cindex backslash in character constant |
| @@ -1013,6 +1014,9 @@ this produces a unibyte string. However, using any hex escape in a | |||
| 1013 | string (even for an @acronym{ASCII} character) forces the string to be | 1014 | string (even for an @acronym{ASCII} character) forces the string to be |
| 1014 | multibyte. | 1015 | multibyte. |
| 1015 | 1016 | ||
| 1017 | You can also specify characters in a string by their numeric values | ||
| 1018 | in Unicode, using @samp{\u} and @samp{\U} (@pxref{Character Type}). | ||
| 1019 | |||
| 1016 | @xref{Text Representations}, for more information about the two | 1020 | @xref{Text Representations}, for more information about the two |
| 1017 | text representations. | 1021 | text representations. |
| 1018 | 1022 | ||