Mercurial > emacs
changeset 51573:861a49cd70cf
(menubar_selection_callback): Don't pass uninitialized
data to kbd_buffer_store_event.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 15 Jun 2003 21:05:34 +0000 |
parents | 1ef0c7b51ff9 |
children | 188c4e671116 |
files | src/macmenu.c src/w32menu.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/macmenu.c Sun Jun 15 21:04:16 2003 +0000 +++ b/src/macmenu.c Sun Jun 15 21:05:34 2003 +0000 @@ -1,5 +1,5 @@ /* Menu support for GNU Emacs on the for Mac OS. - Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -1035,6 +1035,7 @@ int j; struct input_event buf; Lisp_Object frame; + EVENT_INIT (buf); XSETFRAME (frame, f); buf.kind = MENU_BAR_EVENT;
--- a/src/w32menu.c Sun Jun 15 21:04:16 2003 +0000 +++ b/src/w32menu.c Sun Jun 15 21:05:34 2003 +0000 @@ -1,5 +1,5 @@ /* Menu support for GNU Emacs on the Microsoft W32 API. - Copyright (C) 1986, 88, 93, 94, 96, 98, 1999 Free Software Foundation, Inc. + Copyright (C) 1986,88,93,94,96,98,1999,2003 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -1035,6 +1035,7 @@ int j; struct input_event buf; Lisp_Object frame; + EVENT_INIT (buf); XSETFRAME (frame, f); buf.kind = MENU_BAR_EVENT;