# HG changeset patch # User Jim Blandy # Date 717252492 0 # Node ID 3640e799d5fc3f1e0923fcbe4fcdefa2e056734f # Parent 1aa2cd42573772f3fc8b29d037580838219745d7 * 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. diff -r 1aa2cd425737 -r 3640e799d5fc src/xmenu.c --- a/src/xmenu.c Wed Sep 23 12:46:52 1992 +0000 +++ b/src/xmenu.c Wed Sep 23 12:48:12 1992 +0000 @@ -468,6 +468,7 @@ /* 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 @@ 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. */