# HG changeset patch # User Richard M. Stallman # Date 1076978924 0 # Node ID dbcba66062133270205f25f673cd9cba101fca1e # Parent fcad69b9ff7bf1217eb926283e9146bd2ca38981 (Describing Characters): Fix text-char-description example output. diff -r fcad69b9ff7b -r dbcba6606213 lispref/help.texi --- 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