Mercurial > hg > xemacs-beta
comparison lisp/info.el @ 548:0f4bdbb07414
[xemacs-hg @ 2001-05-20 21:36:06 by adrian]
[PATCH] Properly make mouse-track-click-hook local in buff-menu.el and info.el <u7kzb3dsj.fsf@rapier.ecf.teradyne.com>
author | adrian |
---|---|
date | Sun, 20 May 2001 21:36:08 +0000 |
parents | 7039e6323819 |
children | a65ddffa00a5 |
comparison
equal
deleted
inserted
replaced
547:cf82e22962ce | 548:0f4bdbb07414 |
---|---|
3016 (make-local-variable 'Info-current-file-completions) | 3016 (make-local-variable 'Info-current-file-completions) |
3017 (make-local-variable 'Info-current-annotation-completions) | 3017 (make-local-variable 'Info-current-annotation-completions) |
3018 (make-local-variable 'Info-index-alternatives) | 3018 (make-local-variable 'Info-index-alternatives) |
3019 (make-local-variable 'Info-history) | 3019 (make-local-variable 'Info-history) |
3020 ;; Faces are now defined by `defface'... | 3020 ;; Faces are now defined by `defface'... |
3021 (make-local-variable 'mouse-track-click-hook) | 3021 (make-local-hook 'mouse-track-click-hook) |
3022 (add-hook 'mouse-track-click-hook 'Info-maybe-follow-clicked-node) | 3022 (add-hook 'mouse-track-click-hook 'Info-maybe-follow-clicked-node t t) |
3023 (add-hook 'mouse-track-click-hook 'Info-mouse-track-double-click-hook) | 3023 (add-hook 'mouse-track-click-hook 'Info-mouse-track-double-click-hook t t) |
3024 ;; #### The console-on-window-system-p check is to allow this to | 3024 ;; #### The console-on-window-system-p check is to allow this to |
3025 ;; work on tty's. The real problem here is that featurep really | 3025 ;; work on tty's. The real problem here is that featurep really |
3026 ;; needs to have some device/console domain knowledge added to it. | 3026 ;; needs to have some device/console domain knowledge added to it. |
3027 (defvar info::toolbar) | 3027 (defvar info::toolbar) |
3028 (if (and (featurep 'toolbar) | 3028 (if (and (featurep 'toolbar) |