Variable: msb-max-menu-items
msb-max-menu-items is a customizable variable defined in msb.el.gz.
Value
15
Documentation
The maximum number of items in a menu.
If this variable is set to 15 for instance, then the submenu will be split up in minor parts, 15 items each. A value of nil means no limit.
Source Code
;; Defined in /usr/src/emacs/lisp/msb.el.gz
(defcustom msb-max-menu-items 15
"The maximum number of items in a menu.
If this variable is set to 15 for instance, then the submenu will be
split up in minor parts, 15 items each. A value of nil means no limit."
:type '(choice integer (const nil))
:set #'msb-custom-set)