aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-08-02 17:21:07 +0200
committerLars Magne Ingebrigtsen2011-08-02 17:21:07 +0200
commitb96dec833c2cca0e7a99e3cc7b3c1660fed64b92 (patch)
tree904714f6b108b630cb92e7b5dfcc48a3dee20bc9
parent2239d7d5eff3f68a1906773c88f67415ba08bd0a (diff)
downloademacs-b96dec833c2cca0e7a99e3cc7b3c1660fed64b92.tar.gz
emacs-b96dec833c2cca0e7a99e3cc7b3c1660fed64b92.zip
* info.el: Remove the `Info-beginning-of-buffer' function
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/info.el15
2 files changed, 8 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ad5cad4307d..186508c639e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org> 12011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 2
3 * info.el: Remove the `Info-beginning-of-buffer' function
4 (bug#8325).
5
3 * net/network-stream.el (network-stream-open-starttls): Use 6 * net/network-stream.el (network-stream-open-starttls): Use
4 `starttls-available-p' to see whether starttls.el can be used. 7 `starttls-available-p' to see whether starttls.el can be used.
5 8
diff --git a/lisp/info.el b/lisp/info.el
index a4826ee8c2c..447c86b3e9e 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2789,11 +2789,6 @@ N is the digit argument used to invoke this command."
2789 (goto-char (point-max))))) 2789 (goto-char (point-max)))))
2790 (t (error "No previous nodes")))) 2790 (t (error "No previous nodes"))))
2791 2791
2792(defun Info-beginning-of-buffer ()
2793 "Go to the beginnning of the buffer."
2794 (interactive)
2795 (goto-char (point-min)))
2796
2797(defun Info-scroll-up () 2792(defun Info-scroll-up ()
2798 "Scroll one screenful forward in Info, considering all nodes as one sequence. 2793 "Scroll one screenful forward in Info, considering all nodes as one sequence.
2799Once you scroll far enough in a node that its menu appears on the screen 2794Once you scroll far enough in a node that its menu appears on the screen
@@ -3655,7 +3650,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
3655(defvar Info-mode-map 3650(defvar Info-mode-map
3656 (let ((map (make-keymap))) 3651 (let ((map (make-keymap)))
3657 (suppress-keymap map) 3652 (suppress-keymap map)
3658 (define-key map "." 'Info-beginning-of-buffer) 3653 (define-key map "." 'beginning-of-buffer)
3659 (define-key map " " 'Info-scroll-up) 3654 (define-key map " " 'Info-scroll-up)
3660 (define-key map "\C-m" 'Info-follow-nearest-node) 3655 (define-key map "\C-m" 'Info-follow-nearest-node)
3661 (define-key map "\t" 'Info-next-reference) 3656 (define-key map "\t" 'Info-next-reference)
@@ -3676,8 +3671,8 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
3676 (define-key map "[" 'Info-backward-node) 3671 (define-key map "[" 'Info-backward-node)
3677 (define-key map "<" 'Info-top-node) 3672 (define-key map "<" 'Info-top-node)
3678 (define-key map ">" 'Info-final-node) 3673 (define-key map ">" 'Info-final-node)
3679 (define-key map "b" 'Info-beginning-of-buffer) 3674 (define-key map "b" 'beginning-of-buffer)
3680 (put 'Info-beginning-of-buffer :advertised-binding "b") 3675 (put 'beginning-of-buffer :advertised-binding "b")
3681 (define-key map "d" 'Info-directory) 3676 (define-key map "d" 'Info-directory)
3682 (define-key map "e" 'Info-edit) 3677 (define-key map "e" 'Info-edit)
3683 (define-key map "f" 'Info-follow-reference) 3678 (define-key map "f" 'Info-follow-reference)
@@ -3731,7 +3726,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
3731 :help "Go backward one node, considering all as a sequence"] 3726 :help "Go backward one node, considering all as a sequence"]
3732 ["Forward" Info-forward-node 3727 ["Forward" Info-forward-node
3733 :help "Go forward one node, considering all as a sequence"] 3728 :help "Go forward one node, considering all as a sequence"]
3734 ["Beginning" Info-beginning-of-buffer 3729 ["Beginning" beginning-of-buffer
3735 :help "Go to beginning of this node"] 3730 :help "Go to beginning of this node"]
3736 ["Top" Info-top-node 3731 ["Top" Info-top-node
3737 :help "Go to top node of file"] 3732 :help "Go to top node of file"]
@@ -3937,7 +3932,7 @@ Moving within a node:
3937\\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is 3932\\[Info-scroll-down] Normally, scroll backward. If the beginning of the buffer is
3938 already visible, try to go to the previous menu entry, or up 3933 already visible, try to go to the previous menu entry, or up
3939 if there is none. 3934 if there is none.
3940\\[Info-beginning-of-buffer] Go to beginning of node. 3935\\[beginning-of-buffer] Go to beginning of node.
3941 3936
3942Advanced commands: 3937Advanced commands:
3943\\[Info-search] Search through this Info file for specified regexp, 3938\\[Info-search] Search through this Info file for specified regexp,