From: Richard M. Stallman Date: Sun, 17 Apr 1994 07:50:32 +0000 (+0000) Subject: (xmenu_show): Fix typo in last change. X-Git-Tag: emacs-19.34~8922 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e48087b7e2b08759fef453297177a9edcf2f675c;p=emacs.git (xmenu_show): Fix typo in last change. --- diff --git a/src/xmenu.c b/src/xmenu.c index 83f559a1fdc..50e3ceb2ccd 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -1727,7 +1727,7 @@ xmenu_show (f, x, y, menubarp, keymaps, title, error) if (!NILP (prefix)) entry = Fcons (prefix, entry); for (j = submenu_depth - 1; j >= 0; j--) - if (!NILP (subprefix_stack[j], entry)) + if (!NILP (subprefix_stack[j])) entry = Fcons (subprefix_stack[j], entry); } return entry;