aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-09-17 00:06:42 -0700
committerPaul Eggert2013-09-17 00:06:42 -0700
commitb7ad2f7401a22e6189d1b0a0523a3f98d1f70be5 (patch)
tree70c6aeab8f2284f02e7cfb2b26bf61471d936c3c /src/ChangeLog
parent1893694e3e96560a1b750e257f774e23d3b06836 (diff)
downloademacs-b7ad2f7401a22e6189d1b0a0523a3f98d1f70be5.tar.gz
emacs-b7ad2f7401a22e6189d1b0a0523a3f98d1f70be5.zip
Don't overuse 'const' in types of locals.
* bidi.c (bidi_count_bytes): * gtkutil.c, gtkutil.h (xg_event_is_for_menubar) (xg_event_is_for_scrollbar): * xselect.c (x_handle_property_notify) (x_handle_selection_notify, x_handle_dnd_message): * xsettings.c, xsettings.h (xft_settings_event): * xterm.c (x_handle_net_wm_state, handle_one_event) (x_menubar_window_to_frame, x_detect_focus_change) (construct_mouse_click, note_mouse_movement) (x_scroll_bar_to_input_event, x_scroll_bar_expose) (x_scroll_bar_handle_click, x_scroll_bar_note_movement) (handle_one_xevent, x_handle_net_wm_state): * xterm.h (x_handle_property_notify, x_handle_selection_notify) (x_handle_dnd_message): Avoid unnecessary 'const', typically the second 'const' in 'const foo * const arg', a 'const' that does not affect the API and doesn't significantly help the human reader.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f1ba30f023b..d477e3d2ae3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,24 @@
12013-09-17 Paul Eggert <eggert@cs.ucla.edu>
2
3 Don't overuse 'const' in types of locals.
4 * bidi.c (bidi_count_bytes):
5 * gtkutil.c, gtkutil.h (xg_event_is_for_menubar)
6 (xg_event_is_for_scrollbar):
7 * xselect.c (x_handle_property_notify)
8 (x_handle_selection_notify, x_handle_dnd_message):
9 * xsettings.c, xsettings.h (xft_settings_event):
10 * xterm.c (x_handle_net_wm_state, handle_one_event)
11 (x_menubar_window_to_frame, x_detect_focus_change)
12 (construct_mouse_click, note_mouse_movement)
13 (x_scroll_bar_to_input_event, x_scroll_bar_expose)
14 (x_scroll_bar_handle_click, x_scroll_bar_note_movement)
15 (handle_one_xevent, x_handle_net_wm_state):
16 * xterm.h (x_handle_property_notify, x_handle_selection_notify)
17 (x_handle_dnd_message):
18 Avoid unnecessary 'const', typically the second 'const' in
19 'const foo * const arg', a 'const' that does not affect the API
20 and doesn't significantly help the human reader.
21
12013-09-17 Dmitry Antipov <dmantipov@yandex.ru> 222013-09-17 Dmitry Antipov <dmantipov@yandex.ru>
2 23
3 * image.c (fn_g_type_init) [WINDOWSNT]: Define and load 24 * image.c (fn_g_type_init) [WINDOWSNT]: Define and load