Mercurial > emacs
comparison src/ChangeLog @ 109748:e2f8226efb99
Fix -Wwrite_strings in general and for Gtk+ specific code.
* callproc.c (synch_process_death): Make const.
(Fcall_process): Make signame const.
* emacs.c (main): Pass char[] to putenv instead of literal.
* floatfns.c (matherr): Use a const char* variable for x->name.
* font.c (font_open_by_name): Make name const.
* font.h (font_open_by_name): Make name const.
* gtkutil.c (get_utf8_string): Always return an allocated string.
Parameter is const.
(create_dialog, xg_create_one_menuitem, create_menus)
(xg_item_label_same_p, xg_update_menu_item): Free result from
get_utf8_string.
(xg_separator_p, xg_item_label_same_p): label is const.
* gtkutil.h: Replace widget_value with struct _widget_value.
(enum button_type, struct _widget_value): Remove and use the one from
keyboard.h.
* keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
with unsigned char and XtPointer with void *.
* menu.c (Fx_popup_menu): error_name is const.
* menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
is const char **.
* w32menu.c (w32_menu_show):
* nsmenu.m (ns_menu_show): error parameter is const char **.
* process.h (synch_process_death): Is const char*.
* xmenu.c (Fx_popup_dialog): error_name is const char*.
(xmenu_show): error parameter is const char **. pane_string is const
char *.
(button_names): Is const char *.
(xdialog_show): error_name and pane_string is const.
* xrdb.c (get_system_app): Make path const and use char *p for non-const
char.
* xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
* xsmfns.c (NOSPLASH_OPT): Change to char[].
(smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
props. Free them at the end.
* xterm.c (emacs_class): New char[] for EMACS_CLASS.
(xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
(x_term_init): Use char[] display_opt and name_opt instead of
string literal. file is const char*.
author | Jan D <jan.h.d@swipnet.se> |
---|---|
date | Wed, 11 Aug 2010 14:34:46 +0200 |
parents | d6fc586a0872 |
children | be18c3b67d66 |
comparison
equal
deleted
inserted
replaced
109747:1f617baf8ae5 | 109748:e2f8226efb99 |
---|---|
1 2010-08-11 Jan Djärv <jan.h.d@swipnet.se> | 1 2010-08-11 Jan Djärv <jan.h.d@swipnet.se> |
2 | |
3 * xterm.c (emacs_class): New char[] for EMACS_CLASS. | |
4 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class. | |
5 (x_term_init): Use char[] display_opt and name_opt instead of | |
6 string literal. file is const char*. | |
7 | |
8 * xsmfns.c (NOSPLASH_OPT): Change to char[]. | |
9 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for | |
10 props. Free them at the end. | |
11 | |
12 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "". | |
13 | |
14 * xrdb.c (get_system_app): Make path const and use char *p for non-const | |
15 char. | |
16 | |
17 * xmenu.c (Fx_popup_dialog): error_name is const char*. | |
18 (xmenu_show): error parameter is const char **. pane_string is const | |
19 char *. | |
20 (button_names): Is const char *. | |
21 (xdialog_show): error_name and pane_string is const. | |
22 | |
23 * process.h (synch_process_death): Is const char*. | |
24 | |
25 * w32menu.c (w32_menu_show): | |
26 * nsmenu.m (ns_menu_show): error parameter is const char **. | |
27 | |
28 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter | |
29 is const char **. | |
30 | |
31 * menu.c (Fx_popup_menu): error_name is const. | |
32 | |
33 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean | |
34 with unsigned char and XtPointer with void *. | |
35 | |
36 * gtkutil.h: Replace widget_value with struct _widget_value. | |
37 (enum button_type, struct _widget_value): Remove and use the one from | |
38 keyboard.h. | |
39 | |
40 * gtkutil.c (get_utf8_string): Always return an allocated string. | |
41 Parameter is const. | |
42 (create_dialog, xg_create_one_menuitem, create_menus) | |
43 (xg_item_label_same_p, xg_update_menu_item): Free result from | |
44 get_utf8_string. | |
45 (xg_separator_p, xg_item_label_same_p): label is const. | |
46 | |
47 * font.h (font_open_by_name): Make name const. | |
48 | |
49 * font.c (font_open_by_name): Make name const. | |
50 | |
51 * floatfns.c (matherr): Use a const char* variable for x->name. | |
52 | |
53 * emacs.c (main): Pass char[] to putenv instead of literal. | |
54 | |
55 * callproc.c (synch_process_death): Make const. | |
56 (Fcall_process): Make signame const. | |
2 | 57 |
3 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle) | 58 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle) |
4 (addDisplayItemWithImage): Use const char*. | 59 (addDisplayItemWithImage): Use const char*. |
5 | 60 |
6 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle) | 61 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle) |