From: Glenn Morris Date: Tue, 7 Jan 2014 16:50:03 +0000 (-0800) Subject: * lisp/menu-bar.el (menu-bar-help-extra-packages): Remove. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~31 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0030ec15c34c79aba52f3e599a146ee7dc4462e3;p=emacs.git * lisp/menu-bar.el (menu-bar-help-extra-packages): Remove. (menu-bar-help-menu): Use view-external-packages instead. * doc/misc/faq.texi: Comment. --- diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 35fb9c93b2f..a731b9b6b4b 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi @@ -3299,6 +3299,7 @@ the constituent Emacs packages. For advice on how to find extra packages that are not part of Emacs, see @ref{Packages that do not come with Emacs}. +@c Note that M-x view-external-packages references this node. @node Packages that do not come with Emacs @section Where can I get Emacs Lisp packages that don't come with Emacs? @cindex Unbundled packages diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99287618548..88afaec974c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2014-01-07 Glenn Morris + + * menu-bar.el (menu-bar-help-extra-packages): Remove. + (menu-bar-help-menu): Use view-external-packages instead. + 2014-01-07 Bastien Guerry * emacs-lisp/package.el (package-delete): Also delete the package diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 506315e4d08..0b69d4e03c3 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -1635,12 +1635,6 @@ key, a click, or a menu-item")) :help "Read the Introduction to Emacs Lisp Programming")) menu)) -;; This used to visit MORE.STUFF; maybe it should just be removed. -(defun menu-bar-help-extra-packages () - "Display help about some additional packages available for Emacs." - (interactive) - (info "(efaq)Packages that do not come with Emacs")) - (defun help-with-tutorial-spec-language () "Use the Emacs tutorial, specifying which language you want." (interactive) @@ -1668,8 +1662,8 @@ key, a click, or a menu-item")) (bindings--define-key menu [sep2] menu-bar-separator) (bindings--define-key menu [external-packages] - '(menu-item "Finding Extra Packages" menu-bar-help-extra-packages - :help "Lisp packages distributed separately for use in Emacs")) + '(menu-item "Finding Extra Packages" view-external-packages + :help "How to get more Lisp packages for use in Emacs")) (bindings--define-key menu [find-emacs-packages] '(menu-item "Search Built-in Packages" finder-by-keyword :help "Find built-in packages and features by keyword"))