From: Gerd Moellmann Date: Thu, 28 Dec 2000 13:41:26 +0000 (+0000) Subject: (push_key_description): Add prototype. X-Git-Tag: emacs-pretest-21.0.95~246 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=89f93679eeb4c7cf910a3df180c7391c640a7b89;p=emacs.git (push_key_description): Add prototype. --- diff --git a/src/ChangeLog b/src/ChangeLog index 8e5fdb97d26..f45bd817935 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,17 @@ 2000-12-28 Gerd Moellmann + * keyboard.c (echo_char): If C is an integer, always call + push_key_description. Former code could signal an invalid + character error. + + * keymap.c (push_key_description): Add parameter FORCE_MULTIBYTE. + If set, print multibyte text. + (Fsingle_key_description): Call push_key_description with + FORCE_MULTIBYTE set. + (describe_buffer_bindings): Likewise. + + * lisp.h (push_key_description): Add prototype. + * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t around the call to redisplay_internal. diff --git a/src/lisp.h b/src/lisp.h index 75803d826ab..c08e66cb775 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -2585,6 +2585,7 @@ extern void record_auto_save P_ ((void)); extern void init_keyboard P_ ((void)); extern void syms_of_keyboard P_ ((void)); extern void keys_of_keyboard P_ ((void)); +extern char *push_key_description P_ ((unsigned int, char *, int)); /* defined in keymap.c */