mlf176f2 pushed a commit to branch externals/ergoemacs-mode in repository elpa.
commit 66eb7f4cf4063e4808d37e3fa313acbeefde02d9 Author: Matthew L. Fidler <[email protected]> Date: Wed Jul 2 06:48:56 2014 -0500 Fix Issue #258 --- ergoemacs-menus.el | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ergoemacs-menus.el b/ergoemacs-menus.el index 66aacd5..e7294a1 100644 --- a/ergoemacs-menus.el +++ b/ergoemacs-menus.el @@ -794,8 +794,11 @@ All other modes are assumed to be minor modes or unimportant. (coding menu-item "Coding System..." describe-coding-system) (separator-curr-modes menu-item "--") + (curr-major-mode menu-item "Current Major Mode" + ergoemacs-describe-major-mode + :help "Describe this buffers major and minor modes.") (curr-modes menu-item "Current Modes" - describe-modes + (lambda() (interactive) (call-interactively 'describe-mode)) :help "Describe this buffers major and minor modes.") (curr-keys menu-item "Current Key Bindings" describe-bindings
