Mercurial > emacs
changeset 54032:dbcba6606213
(Describing Characters): Fix text-char-description example output.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 17 Feb 2004 00:48:44 +0000 |
parents | fcad69b9ff7b |
children | 9e183d9676e0 |
files | lispref/help.texi |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lispref/help.texi Tue Feb 17 00:47:11 2004 +0000 +++ b/lispref/help.texi Tue Feb 17 00:48:44 2004 +0000 @@ -432,7 +432,8 @@ 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 @@ @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