diff options
| author | Andreas Schwab | 2003-03-12 23:28:03 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-03-12 23:28:03 +0000 |
| commit | d930143556f4dcc28eb5c771dd2c19be73c7df75 (patch) | |
| tree | f6e956d0dd67a0c189a5f6332f164aceb75607e0 | |
| parent | 7a555affd47bc95720150bfc072e216a2fbe6716 (diff) | |
| download | emacs-d930143556f4dcc28eb5c771dd2c19be73c7df75.tar.gz emacs-d930143556f4dcc28eb5c771dd2c19be73c7df75.zip | |
(xg_tool_bar_help_callback): Add missing return value.
| -rw-r--r-- | src/gtkutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c index 3bbac91bc46..d733a476654 100644 --- a/src/gtkutil.c +++ b/src/gtkutil.c | |||
| @@ -2669,7 +2669,7 @@ xg_tool_bar_help_callback (w, event, client_data) | |||
| 2669 | } | 2669 | } |
| 2670 | 2670 | ||
| 2671 | if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items)) | 2671 | if (! f || ! f->n_tool_bar_items || NILP (f->tool_bar_items)) |
| 2672 | return; | 2672 | return FALSE; |
| 2673 | 2673 | ||
| 2674 | if (event->type == GDK_ENTER_NOTIFY) | 2674 | if (event->type == GDK_ENTER_NOTIFY) |
| 2675 | { | 2675 | { |