diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-23 12:48:12 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-23 12:48:12 +0000 |
commit | 538a703fb063af7705361ed5dc893d89afe335c3 (patch) | |
tree | 50c00ae04715636bc71e0b428565a900d68d1b90 | |
parent | b4f8234d67dec759f3a2fede9e7c781b49a2b95b (diff) | |
download | emacs-538a703fb063af7705361ed5dc893d89afe335c3.tar.gz |
* xmenu.c (single_keymap_panes): Comment out the code which
tries to handle a dense keymap's table; it uses keymap_table, and
the rest of the code never uses the table contents anyway.
-rw-r--r-- | src/xmenu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xmenu.c b/src/xmenu.c index 1e6dd98624f..592f8cc574a 100644 --- a/src/xmenu.c +++ b/src/xmenu.c @@ -468,6 +468,7 @@ single_keymap_panes (keymap, panes, vector, names, items, /* Get the length of the list level of the keymap. */ i = XFASTINT (Flength (keymap)); +#if 0 /* If the keymap has a dense table, put it in TABLE, and leave only the list level in KEYMAP. Include the length of the dense table in I. */ @@ -477,6 +478,7 @@ single_keymap_panes (keymap, panes, vector, names, items, i += XFASTINT (Flength (table)); keymap = XCONS (XCONS (keymap)->cdr)->cdr; } +#endif /* Create vectors for the names and values of the items in the pane. I is an upper bound for the number of items. */ |