diff options
Diffstat (limited to 'e-util/e-text-event-processor-emacs-like.c')
-rw-r--r-- | e-util/e-text-event-processor-emacs-like.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/e-util/e-text-event-processor-emacs-like.c b/e-util/e-text-event-processor-emacs-like.c index 5fa248fe75..41bfcf4545 100644 --- a/e-util/e-text-event-processor-emacs-like.c +++ b/e-util/e-text-event-processor-emacs-like.c @@ -133,6 +133,12 @@ e_text_event_processor_emacs_like_event (ETextEventProcessor *tep, ETextEventPro ETextEventProcessorCommand command; ETextEventProcessorEmacsLike *tep_el = E_TEXT_EVENT_PROCESSOR_EMACS_LIKE(tep); command.action = E_TEP_NOP; + /* Warning from the Intel compiler here: + * e-text-event-processor-emacs-like.c(136): warning #589: transfer of control bypasses initialization of: + * variable "key" (declared at line 194) + * switch (event->type) { + * ^ + */ switch (event->type) { case GDK_BUTTON_PRESS: if (event->button.button == 1) { |