Mercurial > hg > xemacs-beta
diff lisp/packages/info.el @ 149:538048ae2ab8 r20-3b1
Import from CVS: tag r20-3b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:36:16 +0200 |
parents | b980b6286996 |
children | 28f395d8dc7a |
line wrap: on
line diff
--- a/lisp/packages/info.el Mon Aug 13 09:35:15 2007 +0200 +++ b/lisp/packages/info.el Mon Aug 13 09:36:16 2007 +0200 @@ -422,6 +422,11 @@ :type '(repeat file) :group 'info) +(defcustom Info-button1-follows-hyperlink nil + "*Non-nil means mouse button1 click will follow hyperlink." + :type 'boolean + :group 'info) + (defvar Info-standalone nil "Non-nil if Emacs was started solely as an Info browser.") @@ -1945,7 +1950,8 @@ Like M, F, N, P or U command. At end of the node's text, moves to the next node. No error is given if there is no node to follow." (interactive "@e") - (and (event-point event) + (and Info-button1-follows-hyperlink + (event-point event) (Info-follow-nearest-node (max (progn (select-window (event-window event))