I am using easy-menu but cannot get the submenu to work
(defvar mcp-outl-subm
'("Outl"
["Hide Direct Body" outline-hide-entry
:help "Hide Entry"]
["Expose Direct Body" outline-show-entry
:help "Show Entry"]
["Expose Headings" outline-hide-body
:help "Hide Body"])
"Sub-Menu for outline tools.")
(easy-menu-define emenu global-map "Emenu"
'("Emenu"
["Outl" mcp-outl-subm t]))
Checked out the backquote thing without solving the problem
(easy-menu-define emenu global-map "Emenu"
`("Emenu"
["Outl" ,mcp-outl-subm t]))