aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-01-07 00:38:58 -0800
committerGlenn Morris2014-01-07 00:38:58 -0800
commite9be0a138c07b93576c07c7fe7c94defee9adfc6 (patch)
treea54529d4875fa58b249eed2958c9ff60bd01d5ed
parentff4a5a419e8d47d229a6270fe9ea3fc194df8ccd (diff)
downloademacs-e9be0a138c07b93576c07c7fe7c94defee9adfc6.tar.gz
emacs-e9be0a138c07b93576c07c7fe7c94defee9adfc6.zip
Reference efaq.info in preference to etc/MORE.STUFF
* lisp/help.el (view-external-packages): * lisp/menu-bar.el (menu-bar-help-extra-packages): Visit efaq.info rather than etc/MORE.STUFF.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/help.el5
-rw-r--r--lisp/menu-bar.el6
3 files changed, 11 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 222582b3d73..9f0a7e5c715 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12014-01-07 Glenn Morris <rgm@gnu.org>
2
3 * help.el (view-external-packages):
4 * menu-bar.el (menu-bar-help-extra-packages):
5 Visit efaq.info rather than etc/MORE.STUFF.
6
12014-01-07 Juri Linkov <juri@jurta.org> 72014-01-07 Juri Linkov <juri@jurta.org>
2 8
3 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to 9 * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
@@ -6,11 +12,6 @@
6 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding 12 * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
7 that shadows RET. (Bug#16342) 13 that shadows RET. (Bug#16342)
8 14
92014-01-07 Daniel Colascione <dancol@dancol.org>
10
11 * vc/log-view.el (log-view-beginning-of-defun): Add comment
12 explaining why we call `log-view-end-of-defun'.
13
142014-01-07 Chong Yidong <cyd@gnu.org> 152014-01-07 Chong Yidong <cyd@gnu.org>
15 16
16 * isearch.el (isearch-yank-char, isearch-yank-word) 17 * isearch.el (isearch-yank-char, isearch-yank-word)
diff --git a/lisp/help.el b/lisp/help.el
index e80d2d85905..22d7007aa5e 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -437,10 +437,11 @@ is specified by the variable `message-log-max'."
437 (interactive) 437 (interactive)
438 (view-help-file "DEBUG")) 438 (view-help-file "DEBUG"))
439 439
440;; This used to visit MORE.STUFF; maybe it should just be removed.
440(defun view-external-packages () 441(defun view-external-packages ()
441 "Display external packages and information about Emacs." 442 "Display info on where to get more Emacs packages."
442 (interactive) 443 (interactive)
443 (view-help-file "MORE.STUFF")) 444 (info "(efaq)Packages that do not come with Emacs"))
444 445
445(defun view-lossage () 446(defun view-lossage ()
446 "Display last 300 input keystrokes. 447 "Display last 300 input keystrokes.
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index e64a6716569..506315e4d08 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -1635,13 +1635,11 @@ key, a click, or a menu-item"))
1635 :help "Read the Introduction to Emacs Lisp Programming")) 1635 :help "Read the Introduction to Emacs Lisp Programming"))
1636 menu)) 1636 menu))
1637 1637
1638;; This used to visit MORE.STUFF; maybe it should just be removed.
1638(defun menu-bar-help-extra-packages () 1639(defun menu-bar-help-extra-packages ()
1639 "Display help about some additional packages available for Emacs." 1640 "Display help about some additional packages available for Emacs."
1640 (interactive) 1641 (interactive)
1641 (let (enable-local-variables) 1642 (info "(efaq)Packages that do not come with Emacs"))
1642 (view-file (expand-file-name "MORE.STUFF"
1643 data-directory))
1644 (goto-address-mode 1)))
1645 1643
1646(defun help-with-tutorial-spec-language () 1644(defun help-with-tutorial-spec-language ()
1647 "Use the Emacs tutorial, specifying which language you want." 1645 "Use the Emacs tutorial, specifying which language you want."