aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index fbf1263a71b..4c23977ef41 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2273,7 +2273,11 @@ push_text_char_description (c, p)
2273 2273
2274DEFUN ("text-char-description", Ftext_char_description, Stext_char_description, 1, 1, 0, 2274DEFUN ("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.
2276Control characters turn into "^char", etc. */) 2276Control characters turn into "^char", etc. This differs from
2277`single-key-description' which turns them into "C-char".
2278Also, this function recognizes the 2**7 bit as the Meta character,
2279whereas `single-key-description' uses the 2**27 bit for Meta.
2280See Info node `(elisp)Describing Characters' for examples. */)
2277 (character) 2281 (character)
2278 Lisp_Object character; 2282 Lisp_Object character;
2279{ 2283{