mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-27 10:54:40 +00:00
(Describing Characters): Fix text-char-description example output.
This commit is contained in:
parent
2c6d3eef11
commit
a48d10ae57
@ -432,7 +432,8 @@ This function returns a string describing @var{character} in the
|
||||
standard Emacs notation for characters that appear in text---like
|
||||
@code{single-key-description}, except that control characters are
|
||||
represented with a leading caret (which is how control characters in
|
||||
Emacs buffers are usually displayed).
|
||||
Emacs buffers are usually displayed) and character codes 128
|
||||
and above are not treated as Meta characters.
|
||||
|
||||
@smallexample
|
||||
@group
|
||||
@ -441,11 +442,11 @@ Emacs buffers are usually displayed).
|
||||
@end group
|
||||
@group
|
||||
(text-char-description ?\M-m)
|
||||
@result{} "M-m"
|
||||
@result{} "\xed"
|
||||
@end group
|
||||
@group
|
||||
(text-char-description ?\C-\M-m)
|
||||
@result{} "M-^M"
|
||||
@result{} "\x8d"
|
||||
@end group
|
||||
@end smallexample
|
||||
@end defun
|
||||
|
Loading…
Reference in New Issue
Block a user