diff options
| author | Luc Teirlinck | 2004-06-23 17:03:50 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-06-23 17:03:50 +0000 |
| commit | bda67d967f83bd4a5aa9dacf706e544f0c807bd0 (patch) | |
| tree | 8652ebc3e33bae6bb3e0f68fe4357cfbb3a35faa /src/keymap.c | |
| parent | 98b6690a113fc49de610d74555a08cbd7e1b4648 (diff) | |
| download | emacs-bda67d967f83bd4a5aa9dacf706e544f0c807bd0.tar.gz emacs-bda67d967f83bd4a5aa9dacf706e544f0c807bd0.zip | |
(Ftext_char_description): Doc fix.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index cc2d21ba927..48108fbfa12 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2282,7 +2282,11 @@ push_text_char_description (c, p) | |||
| 2282 | 2282 | ||
| 2283 | DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, | 2283 | DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, |
| 2284 | doc: /* Return a pretty description of file-character CHARACTER. | 2284 | doc: /* Return a pretty description of file-character CHARACTER. |
| 2285 | Control characters turn into "^char", etc. */) | 2285 | Control characters turn into "^char", etc. This differs from |
| 2286 | `single-key-description' which turns them into "C-char". | ||
| 2287 | Also, this function recognizes the 2**7 bit as the Meta character, | ||
| 2288 | whereas `single-key-description' uses the 2**27 bit for Meta. | ||
| 2289 | See Info node `(elisp)Describing Characters' for examples. */) | ||
| 2286 | (character) | 2290 | (character) |
| 2287 | Lisp_Object character; | 2291 | Lisp_Object character; |
| 2288 | { | 2292 | { |