aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 18:36:53 -0700
committerPaul Eggert2011-04-13 18:36:53 -0700
commit8a1414fa0fa4706b59589d11f3deaf6199e9a305 (patch)
treee829ac85eddb71b7f280c819635ceaf2a85a1221 /src/ChangeLog
parent93ea6e8fa937675ade7e03c5aa35886a15185541 (diff)
downloademacs-8a1414fa0fa4706b59589d11f3deaf6199e9a305.tar.gz
emacs-8a1414fa0fa4706b59589d11f3deaf6199e9a305.zip
* keyboard.c: Make symbols static if they're not exported.
(single_kboard, recent_keys_index, total_keys, recent_keys): (this_command_key_count_reset, raw_keybuf, raw_keybuf_count): (this_single_command_key_start, echoing, last_auto_save): (read_key_sequence_cmd, dribble, recursive_edit_unwind): (command_loop, echo_now, keyboard_init_hook, help_char_p): (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer): (Vlispy_mouse_stem, double_click_count): Now static. (force_auto_save_soon): Define only if SIGDANGER. (ignore_mouse_drag_p): Now static if !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS. (print_help): Remove; unused. (stop_character, last_timer_event): Mark as externally visible. * keyboard.h (ignore_mouse_drag_p): Declare only if defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS. (echo_now, help_char_p, quit_throw_to_read_char): Remove decls. * lisp.h (echoing): Remove decl. (force_auto_save_soon): Declare only if SIGDANGER. * xdisp.c (redisplay_window): Simplify code, to make it more obvious that ignore_mouse_drag_p is not accessed if !defined USE_GTK && !defined HAVE_NS.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 2187a6b5620..322e3665e86 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,28 @@
12011-04-14 Paul Eggert <eggert@cs.ucla.edu> 12011-04-14 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * keyboard.c: Make symbols static if they're not exported.
4 (single_kboard, recent_keys_index, total_keys, recent_keys):
5 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
6 (this_single_command_key_start, echoing, last_auto_save):
7 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
8 (command_loop, echo_now, keyboard_init_hook, help_char_p):
9 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
10 (Vlispy_mouse_stem, double_click_count):
11 Now static.
12 (force_auto_save_soon): Define only if SIGDANGER.
13 (ignore_mouse_drag_p): Now static if
14 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
15 (print_help): Remove; unused.
16 (stop_character, last_timer_event): Mark as externally visible.
17 * keyboard.h (ignore_mouse_drag_p): Declare only if
18 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
19 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20 * lisp.h (echoing): Remove decl.
21 (force_auto_save_soon): Declare only if SIGDANGER.
22 * xdisp.c (redisplay_window): Simplify code, to make it more
23 obvious that ignore_mouse_drag_p is not accessed if !defined
24 USE_GTK && !defined HAVE_NS.
25
3 * intervals.c: Make symbols static if they're not exported. 26 * intervals.c: Make symbols static if they're not exported.
4 (merge_properties_sticky, merge_interval_right, delete_interval): 27 (merge_properties_sticky, merge_interval_right, delete_interval):
5 Now static. 28 Now static.