diff options
| author | Paul Eggert | 2012-08-17 16:38:43 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 16:38:43 -0700 |
| commit | 15dbb4d6ba5dea7d3e0f45ab3fd038c2b305a145 (patch) | |
| tree | 2b8f35fcfd05d43551b873d4390264768f099dfb /src/ChangeLog | |
| parent | f00af5b1c24515f20f96cfd8d59983ab62fb3f25 (diff) | |
| download | emacs-15dbb4d6ba5dea7d3e0f45ab3fd038c2b305a145.tar.gz emacs-15dbb4d6ba5dea7d3e0f45ab3fd038c2b305a145.zip | |
* keyboard.h (KSET): Remove.
Replace all uses with calls to new setter functions.
Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
(KEYBOARD_INLINE): New macro.
(kset_default_minibuffer_frame, kset_defining_kbd_macro)
(kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
(kset_prefix_arg, kset_system_key_alist, kset_window_system):
New setter functions.
* keyboard.c (KEYBOARD_INLINE):
Define to EXTERN_INLINE, so that the corresponding functions
are compiled into code.
(kset_echo_string, kset_kbd_queue)
(kset_keyboard_translate_table, kset_last_prefix_arg)
(kset_last_repeatable_command, kset_local_function_key_map)
(kset_overriding_terminal_local_map, kset_real_last_command)
(kset_system_key_syms): New setter functions.
Fixes: debbugs:12215
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6cb475ef3d7..403f76243a0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,22 @@ | |||
| 1 | 2012-08-17 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-08-17 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * keyboard.h (KSET): Remove (Bug#12215). | ||
| 4 | Replace all uses with calls to new setter functions. | ||
| 5 | Use INLINE_HEADER_BEGIN, INLINE_HEADER_END. | ||
| 6 | (KEYBOARD_INLINE): New macro. | ||
| 7 | (kset_default_minibuffer_frame, kset_defining_kbd_macro) | ||
| 8 | (kset_input_decode_map, kset_last_command, kset_last_kbd_macro) | ||
| 9 | (kset_prefix_arg, kset_system_key_alist, kset_window_system): | ||
| 10 | New setter functions. | ||
| 11 | * keyboard.c (KEYBOARD_INLINE): | ||
| 12 | Define to EXTERN_INLINE, so that the corresponding functions | ||
| 13 | are compiled into code. | ||
| 14 | (kset_echo_string, kset_kbd_queue) | ||
| 15 | (kset_keyboard_translate_table, kset_last_prefix_arg) | ||
| 16 | (kset_last_repeatable_command, kset_local_function_key_map) | ||
| 17 | (kset_overriding_terminal_local_map, kset_real_last_command) | ||
| 18 | (kset_system_key_syms): New setter functions. | ||
| 19 | |||
| 3 | * frame.h (FSET): Remove (Bug#12215). | 20 | * frame.h (FSET): Remove (Bug#12215). |
| 4 | Replace all uses with calls to new setter functions. | 21 | Replace all uses with calls to new setter functions. |
| 5 | Use INLINE_HEADER_BEGIN, INLINE_HEADER_END. | 22 | Use INLINE_HEADER_BEGIN, INLINE_HEADER_END. |