summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2014-01-07 08:50:03 -0800
committerGlenn Morris <rgm@gnu.org>2014-01-07 08:50:03 -0800
commit0030ec15c34c79aba52f3e599a146ee7dc4462e3 (patch)
treeebc012c2443617c4c341771a9a04b90d6cd9af48
parent3c8b09ca2e01b0ef0c1b6651fab54194f0019fdc (diff)
downloademacs-0030ec15c34c79aba52f3e599a146ee7dc4462e3.tar.gz
* lisp/menu-bar.el (menu-bar-help-extra-packages): Remove.
(menu-bar-help-menu): Use view-external-packages instead. * doc/misc/faq.texi: Comment.
-rw-r--r--doc/misc/efaq.texi1
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/menu-bar.el10
3 files changed, 8 insertions, 8 deletions
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 <rgm@gnu.org>
+
+ * menu-bar.el (menu-bar-help-extra-packages): Remove.
+ (menu-bar-help-menu): Use view-external-packages instead.
+
2014-01-07 Bastien Guerry <bzg@gnu.org>
* 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"))