Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b96dec83
Commit
b96dec83
authored
Aug 02, 2011
by
Lars Magne Ingebrigtsen
Browse files
* info.el: Remove the `Info-beginning-of-buffer' function
parent
2239d7d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
+8
-10
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/info.el
lisp/info.el
+5
-10
No files found.
lisp/ChangeLog
View file @
b96dec83
2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
* info.el: Remove the `Info-beginning-of-buffer' function
(bug#8325).
* net/network-stream.el (network-stream-open-starttls): Use
`starttls-available-p' to see whether starttls.el can be used.
...
...
lisp/info.el
View file @
b96dec83
...
...
@@ -2789,11 +2789,6 @@ N is the digit argument used to invoke this command."
(
goto-char
(
point-max
)))))
(
t
(
error
"No previous nodes"
))))
(defun Info-beginning-of-buffer ()
"Go to the beginnning of the buffer."
(interactive)
(goto-char (point-min)))
(
defun
Info-scroll-up
()
"Scroll one screenful forward in Info, considering all nodes as one sequence.
Once 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'."
(
defvar
Info-mode-map
(
let
((
map
(
make-keymap
)))
(
suppress-keymap
map
)
(define-key map "." '
Info-
beginning-of-buffer)
(
define-key
map
"."
'beginning-of-buffer
)
(
define-key
map
" "
'Info-scroll-up
)
(
define-key
map
"\C-m"
'Info-follow-nearest-node
)
(
define-key
map
"\t"
'Info-next-reference
)
...
...
@@ -3676,8 +3671,8 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
(
define-key
map
"["
'Info-backward-node
)
(
define-key
map
"<"
'Info-top-node
)
(
define-key
map
">"
'Info-final-node
)
(define-key map "b" '
Info-
beginning-of-buffer)
(put '
Info-
beginning-of-buffer :advertised-binding "b")
(
define-key
map
"b"
'beginning-of-buffer
)
(
put
'beginning-of-buffer
:advertised-binding
"b"
)
(
define-key
map
"d"
'Info-directory
)
(
define-key
map
"e"
'Info-edit
)
(
define-key
map
"f"
'Info-follow-reference
)
...
...
@@ -3731,7 +3726,7 @@ If FORK is non-nil, it is passed to `Info-goto-node'."
:help
"Go backward one node, considering all as a sequence"
]
[
"Forward"
Info-forward-node
:help
"Go forward one node, considering all as a sequence"
]
["Beginning"
Info-
beginning-of-buffer
[
"Beginning"
beginning-of-buffer
:help
"Go to beginning of this node"
]
[
"Top"
Info-top-node
:help
"Go to top node of file"
]
...
...
@@ -3937,7 +3932,7 @@ Moving within a node:
\\[Info-scroll-down]
Normally,
scroll
backward.
If
the
beginning
of
the
buffer
is
already
visible,
try
to
go
to
the
previous
menu
entry,
or
up
if
there
is
none.
\\[
Info-
beginning-of-buffer] Go to beginning of node.
\\[beginning-of-buffer]
Go
to
beginning
of
node.
Advanced
commands:
\\[Info-search]
Search
through
this
Info
file
for
specified
regexp,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment