Mercurial > emacs
diff src/macmenu.c @ 70382:eb5777232ca5
(restore_menu_items, cleanup_popup_menu): Return a value.
| author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
|---|---|
| date | Fri, 05 May 2006 06:44:10 +0000 |
| parents | a2348b30cc21 |
| children | 15d914de92fd 146cd8369025 |
line wrap: on
line diff
--- a/src/macmenu.c Fri May 05 06:44:01 2006 +0000 +++ b/src/macmenu.c Fri May 05 06:44:10 2006 +0000 @@ -318,6 +318,7 @@ menu_items_n_panes = XINT (XCAR (saved)); saved = XCDR (saved); menu_items_submenu_depth = XINT (XCAR (saved)); + return Qnil; } /* Push the whole state of menu_items processing onto the specpdl. @@ -634,6 +635,7 @@ Lisp_Object arg; { discard_menu_items (); + return Qnil; } DEFUN ("x-popup-menu", Fx_popup_menu, Sx_popup_menu, 2, 2, 0,
