diff options
| -rw-r--r-- | lisp/mwheel.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mwheel.el b/lisp/mwheel.el index f7feab41250..e7519cbfb66 100644 --- a/lisp/mwheel.el +++ b/lisp/mwheel.el | |||
| @@ -98,13 +98,12 @@ This can be slightly disconcerting, but some people may prefer it." | |||
| 98 | ;;; Note this definition must be at the end of the file, because | 98 | ;;; Note this definition must be at the end of the file, because |
| 99 | ;;; `define-minor-mode' actually calls the mode-function if the | 99 | ;;; `define-minor-mode' actually calls the mode-function if the |
| 100 | ;;; associated variable is non-nil, which requires that all needed | 100 | ;;; associated variable is non-nil, which requires that all needed |
| 101 | ;;; functions be already defined. [This is arguably a bug in d-m-m] | 101 | ;;; functions be already defined. |
| 102 | ;;;###autoload | 102 | ;;;###autoload |
| 103 | (define-minor-mode mouse-wheel-mode | 103 | (define-minor-mode mouse-wheel-mode |
| 104 | "Toggle mouse wheel support. | 104 | "Toggle mouse wheel support. |
| 105 | With prefix argument ARG, turn on if positive, otherwise off. | 105 | With prefix argument ARG, turn on if positive, otherwise off. |
| 106 | Returns non-nil if the new state is enabled." | 106 | Returns non-nil if the new state is enabled." |
| 107 | nil nil nil | ||
| 108 | :global t | 107 | :global t |
| 109 | :group 'mouse | 108 | :group 'mouse |
| 110 | ;; In the latest versions of XEmacs, we could just use | 109 | ;; In the latest versions of XEmacs, we could just use |