]> git.eshelyaron.com Git - emacs.git/commitdiff
Reference efaq.info in preference to etc/MORE.STUFF
authorGlenn Morris <rgm@gnu.org>
Tue, 7 Jan 2014 08:38:58 +0000 (00:38 -0800)
committerGlenn Morris <rgm@gnu.org>
Tue, 7 Jan 2014 08:38:58 +0000 (00:38 -0800)
* lisp/help.el (view-external-packages):
* lisp/menu-bar.el (menu-bar-help-extra-packages):
Visit efaq.info rather than etc/MORE.STUFF.

lisp/ChangeLog
lisp/help.el
lisp/menu-bar.el

index 222582b3d7340d7d5ae4007f6023bbf149f008d4..9f0a7e5c715e850011b77b910a6b600983dd2b7e 100644 (file)
@@ -1,3 +1,9 @@
+2014-01-07  Glenn Morris  <rgm@gnu.org>
+
+       * help.el (view-external-packages):
+       * menu-bar.el (menu-bar-help-extra-packages):
+       Visit efaq.info rather than etc/MORE.STUFF.
+
 2014-01-07  Juri Linkov  <juri@jurta.org>
 
        * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
@@ -6,11 +12,6 @@
        * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
        that shadows RET.  (Bug#16342)
 
-2014-01-07  Daniel Colascione  <dancol@dancol.org>
-
-       * vc/log-view.el (log-view-beginning-of-defun): Add comment
-       explaining why we call `log-view-end-of-defun'.
-
 2014-01-07  Chong Yidong  <cyd@gnu.org>
 
        * isearch.el (isearch-yank-char, isearch-yank-word)
index e80d2d8590553c8d6b8c1dd521ab1d796f50538a..22d7007aa5e5ddb01bb3e25f31b80adc4383b50f 100644 (file)
@@ -437,10 +437,11 @@ is specified by the variable `message-log-max'."
   (interactive)
   (view-help-file "DEBUG"))
 
+;; This used to visit MORE.STUFF; maybe it should just be removed.
 (defun view-external-packages ()
-  "Display external packages and information about Emacs."
+  "Display info on where to get more Emacs packages."
   (interactive)
-  (view-help-file "MORE.STUFF"))
+  (info "(efaq)Packages that do not come with Emacs"))
 
 (defun view-lossage ()
   "Display last 300 input keystrokes.
index e64a6716569098c26dfe32c7f84e6532fb6eee60..506315e4d0841a243f41f9236a81922bb95e0c0b 100644 (file)
@@ -1635,13 +1635,11 @@ 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)
-  (let (enable-local-variables)
-    (view-file (expand-file-name "MORE.STUFF"
-                                data-directory))
-    (goto-address-mode 1)))
+  (info "(efaq)Packages that do not come with Emacs"))
 
 (defun help-with-tutorial-spec-language ()
   "Use the Emacs tutorial, specifying which language you want."