aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-17 07:50:32 +0000
committerRichard M. Stallman1994-04-17 07:50:32 +0000
commite48087b7e2b08759fef453297177a9edcf2f675c (patch)
tree21029341a7b2727a559bdafddf0592a83ed5c35f /src
parent3051bc72d6473640e9242726e76e8de412c829fe (diff)
downloademacs-e48087b7e2b08759fef453297177a9edcf2f675c.tar.gz
emacs-e48087b7e2b08759fef453297177a9edcf2f675c.zip
(xmenu_show): Fix typo in last change.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c2
1 files changed, 1 insertions, 1 deletions
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)
1727 if (!NILP (prefix)) 1727 if (!NILP (prefix))
1728 entry = Fcons (prefix, entry); 1728 entry = Fcons (prefix, entry);
1729 for (j = submenu_depth - 1; j >= 0; j--) 1729 for (j = submenu_depth - 1; j >= 0; j--)
1730 if (!NILP (subprefix_stack[j], entry)) 1730 if (!NILP (subprefix_stack[j]))
1731 entry = Fcons (subprefix_stack[j], entry); 1731 entry = Fcons (subprefix_stack[j], entry);
1732 } 1732 }
1733 return entry; 1733 return entry;