From: Richard M. Stallman Date: Thu, 19 Dec 1996 06:42:08 +0000 (+0000) Subject: (set_frame_menubar): Call Fmatch_data with new explicit arguments. X-Git-Tag: emacs-20.1~3215 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7935c7387bd24aacb730b89bd9d3231de3863fe7;p=emacs.git (set_frame_menubar): Call Fmatch_data with new explicit arguments. --- diff --git a/src/w32menu.c b/src/w32menu.c index c3945076537..a169e267e31 100644 --- a/src/w32menu.c +++ b/src/w32menu.c @@ -1405,7 +1405,7 @@ set_frame_menubar (f, first_time) because it is not reentrant. */ specbind (Qdebug_on_next_call, Qnil); - record_unwind_protect (Fstore_match_data, Fmatch_data ()); + record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); if (NILP (Voverriding_local_map_menu_flag)) { specbind (Qoverriding_terminal_local_map, Qnil); diff --git a/src/xmenu.c b/src/xmenu.c index 46b75cc1dbb..fee4e97347e 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -1665,7 +1665,7 @@ set_frame_menubar (f, first_time, deep_p) because it is not reentrant. */ specbind (Qdebug_on_next_call, Qnil); - record_unwind_protect (Fstore_match_data, Fmatch_data ()); + record_unwind_protect (Fstore_match_data, Fmatch_data (Qnil, Qnil)); if (NILP (Voverriding_local_map_menu_flag)) { specbind (Qoverriding_terminal_local_map, Qnil);