# HG changeset patch # User Andreas Schwab # Date 892558919 0 # Node ID 39c919d2a8becf695bff74164ed9e4252b758fd4 # Parent fff9425b9230370a7c56f17814d86c1113e30d62 (parse_menu_item): Don't GCPRO non-lisp variables. diff -r fff9425b9230 -r 39c919d2a8be src/keyboard.c --- a/src/keyboard.c Tue Apr 14 13:01:05 1998 +0000 +++ b/src/keyboard.c Tue Apr 14 13:01:59 1998 +0000 @@ -5570,7 +5570,7 @@ if (!CONSP (item)) return 0; - GCPRO3 (item, notreal, inmenubar); + GCPRO1 (item); /* Create item_properties vector if necessary. */ if (NILP (item_properties)) @@ -7899,7 +7899,7 @@ /* sys_suspend can get an error if it tries to fork a subshell and the system resources aren't available for that. */ record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes, - 0); + Qnil); stuff_buffered_input (stuffstring); if (cannot_suspend) sys_subshell ();