aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2012-04-23 00:34:29 -0700
committerPaul Eggert2012-04-23 00:34:29 -0700
commit1068fe4d1bde1f532aedb612244f0f3c4ad555be (patch)
tree55328f6213ec8c47bb225e560bd96de88f0aaee6 /src/ChangeLog
parent0ba2624f7dd2253853c6caf4fbfdc272822de3e3 (diff)
downloademacs-1068fe4d1bde1f532aedb612244f0f3c4ad555be.tar.gz
emacs-1068fe4d1bde1f532aedb612244f0f3c4ad555be.zip
Fix minor GTK3 problems found by static checking.
* emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed) (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed) (struct _EmacsFixedClass, emacs_fixed_get_type): Move decls here from emacsgtkfixed.h, since they needn't be public. (emacs_fixed_get_type): Now static. (emacs_fixed_class_init): Omit unused local. (emacs_fixed_child_type): Remove; unused. * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed) (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed) (struct _EmacsFixedClass): Move to emacsgtkfixed.c. (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS) (EMACS_FIXED_GET_CLASS): Remove; unused. * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 825211aa8ce..1db958d8d67 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,20 @@
12012-04-23 Paul Eggert <eggert@cs.ucla.edu> 12012-04-23 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Fix minor GTK3 problems found by static checking.
4 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
5 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
6 (struct _EmacsFixedClass, emacs_fixed_get_type):
7 Move decls here from emacsgtkfixed.h, since they needn't be public.
8 (emacs_fixed_get_type): Now static.
9 (emacs_fixed_class_init): Omit unused local.
10 (emacs_fixed_child_type): Remove; unused.
11 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
14 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
15 (EMACS_FIXED_GET_CLASS): Remove; unused.
16 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
17
3 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO. 18 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
4 Problem reported by Juanma Barranquero for Windows -Wunused-function. 19 Problem reported by Juanma Barranquero for Windows -Wunused-function.
5 20