diff options
| author | Richard M. Stallman | 2004-02-17 00:48:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-02-17 00:48:44 +0000 |
| commit | a48d10ae570c033391e83eb58773564cfe15e9bb (patch) | |
| tree | 59eddd8ee737b989f52b776de25cf3f5598dccd9 | |
| parent | 2c6d3eef11acac0a260c00b98bde7410b9ea94c7 (diff) | |
| download | emacs-a48d10ae570c033391e83eb58773564cfe15e9bb.tar.gz emacs-a48d10ae570c033391e83eb58773564cfe15e9bb.zip | |
(Describing Characters): Fix text-char-description example output.
| -rw-r--r-- | lispref/help.texi | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lispref/help.texi b/lispref/help.texi index dc14b0226b5..9a55ebf6724 100644 --- a/lispref/help.texi +++ b/lispref/help.texi | |||
| @@ -432,7 +432,8 @@ This function returns a string describing @var{character} in the | |||
| 432 | standard Emacs notation for characters that appear in text---like | 432 | standard Emacs notation for characters that appear in text---like |
| 433 | @code{single-key-description}, except that control characters are | 433 | @code{single-key-description}, except that control characters are |
| 434 | represented with a leading caret (which is how control characters in | 434 | represented with a leading caret (which is how control characters in |
| 435 | Emacs buffers are usually displayed). | 435 | Emacs buffers are usually displayed) and character codes 128 |
| 436 | and above are not treated as Meta characters. | ||
| 436 | 437 | ||
| 437 | @smallexample | 438 | @smallexample |
| 438 | @group | 439 | @group |
| @@ -441,11 +442,11 @@ Emacs buffers are usually displayed). | |||
| 441 | @end group | 442 | @end group |
| 442 | @group | 443 | @group |
| 443 | (text-char-description ?\M-m) | 444 | (text-char-description ?\M-m) |
| 444 | @result{} "M-m" | 445 | @result{} "\xed" |
| 445 | @end group | 446 | @end group |
| 446 | @group | 447 | @group |
| 447 | (text-char-description ?\C-\M-m) | 448 | (text-char-description ?\C-\M-m) |
| 448 | @result{} "M-^M" | 449 | @result{} "\x8d" |
| 449 | @end group | 450 | @end group |
| 450 | @end smallexample | 451 | @end smallexample |
| 451 | @end defun | 452 | @end defun |