Mercurial > emacs
comparison src/keymap.c @ 56217:dd79816933ec
(Ftext_char_description): Doc fix.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Wed, 23 Jun 2004 17:03:50 +0000 |
parents | c663e2e97168 |
children | b5575b1c51f0 dbcd0af66869 59dcbfe97385 |
comparison
equal
deleted
inserted
replaced
56216:efd6af30bde2 | 56217:dd79816933ec |
---|---|
2280 | 2280 |
2281 /* This function cannot GC. */ | 2281 /* This function cannot GC. */ |
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 { |
2289 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */ | 2293 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */ |
2290 unsigned char str[6]; | 2294 unsigned char str[6]; |