summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/info.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b40dbf7a27c..cdfdcc4a95a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-10 Stephen Berman <stephen.berman@gmx.net>
+
+ * info.el (Info-mouse-follow-nearest-node): Follow links to different
+ manuals. (Bug#886)
+
2008-09-09 Juanma Barranquero <lekktu@gmail.com>
* ido.el (ido-unload-function): New function.
diff --git a/lisp/info.el b/lisp/info.el
index b9a772af74e..930a3e65ec2 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -3099,7 +3099,7 @@ Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \
At end of the node's text, moves to the next node, or up if none."
(interactive "e")
(mouse-set-point click)
- (and (not (Info-try-follow-nearest-node))
+ (and (not (Info-follow-nearest-node))
(save-excursion (forward-line 1) (eobp))
(Info-next-preorder)))