diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-18 06:57:36 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-18 06:57:36 +0000 |
commit | 2436c0290978cb9a7c6397aa277fb3f906660896 (patch) | |
tree | 5444598123f8cf3380ddd362d26bd5d64c91e1ed | |
parent | f32b54d420f23e5da7b9b89f06daff69d7b31511 (diff) | |
download | emacs-2436c0290978cb9a7c6397aa277fb3f906660896.tar.gz |
(list_of_items): Arg to push_menu_item was missing.
-rw-r--r-- | src/xmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 4a38b7f3bc5..0b6917664b4 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -608,7 +608,7 @@ list_of_items (pane) { item = Fcar (tail); if (STRINGP (item)) - push_menu_item (item, Qnil, Qnil); + push_menu_item (item, Qnil, Qnil, Qnil); else { CHECK_CONS (item, 0); |