comparison src/keymap.c @ 89945:59dcbfe97385

Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-17 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-417 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-419 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-420 Tweak permissions * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-421 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-430 Update from CVS
author Miles Bader <miles@gnu.org>
date Tue, 29 Jun 2004 16:46:06 +0000
parents 4c90ffeb71c5 dd79816933ec
children 0bdb5a16ae51
comparison
equal deleted inserted replaced
89944:ecb75580442e 89945:59dcbfe97385
2271 2271
2272 /* This function cannot GC. */ 2272 /* This function cannot GC. */
2273 2273
2274 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, 2274 DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0,
2275 doc: /* Return a pretty description of file-character CHARACTER. 2275 doc: /* Return a pretty description of file-character CHARACTER.
2276 Control characters turn into "^char", etc. */) 2276 Control characters turn into "^char", etc. This differs from
2277 `single-key-description' which turns them into "C-char".
2278 Also, this function recognizes the 2**7 bit as the Meta character,
2279 whereas `single-key-description' uses the 2**27 bit for Meta.
2280 See Info node `(elisp)Describing Characters' for examples. */)
2277 (character) 2281 (character)
2278 Lisp_Object character; 2282 Lisp_Object character;
2279 { 2283 {
2280 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */ 2284 /* Currently MAX_MULTIBYTE_LENGTH is 4 (< 6). */
2281 unsigned char str[6]; 2285 unsigned char str[6];