aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-28 13:41:26 +0000
committerGerd Moellmann2000-12-28 13:41:26 +0000
commit89f93679eeb4c7cf910a3df180c7391c640a7b89 (patch)
tree1b44d43f102cda28ff293183d9ebb8baba685079 /src
parentf1cb0a258473258fa307806cad134de0d25970f5 (diff)
downloademacs-89f93679eeb4c7cf910a3df180c7391c640a7b89.tar.gz
emacs-89f93679eeb4c7cf910a3df180c7391c640a7b89.zip
(push_key_description): Add prototype.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog12
-rw-r--r--src/lisp.h1
2 files changed, 13 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8e5fdb97d26..f45bd817935 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,17 @@
12000-12-28 Gerd Moellmann <gerd@gnu.org> 12000-12-28 Gerd Moellmann <gerd@gnu.org>
2 2
3 * keyboard.c (echo_char): If C is an integer, always call
4 push_key_description. Former code could signal an invalid
5 character error.
6
7 * keymap.c (push_key_description): Add parameter FORCE_MULTIBYTE.
8 If set, print multibyte text.
9 (Fsingle_key_description): Call push_key_description with
10 FORCE_MULTIBYTE set.
11 (describe_buffer_bindings): Likewise.
12
13 * lisp.h (push_key_description): Add prototype.
14
3 * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t 15 * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t
4 around the call to redisplay_internal. 16 around the call to redisplay_internal.
5 17
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));
2585extern void init_keyboard P_ ((void)); 2585extern void init_keyboard P_ ((void));
2586extern void syms_of_keyboard P_ ((void)); 2586extern void syms_of_keyboard P_ ((void));
2587extern void keys_of_keyboard P_ ((void)); 2587extern void keys_of_keyboard P_ ((void));
2588extern char *push_key_description P_ ((unsigned int, char *, int));
2588 2589
2589/* defined in keymap.c */ 2590/* defined in keymap.c */
2590 2591