mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(mouse-wheel-down-button, mouse-wheel-up-button):
Declare with defvar, not with defcustom.
This commit is contained in:
parent
2642ac8f2d
commit
6c5f59d0a6
@ -1,5 +1,8 @@
|
||||
2002-11-11 Markus Rost <rost@math.ohio-state.edu>
|
||||
|
||||
* mwheel.el (mouse-wheel-down-button, mouse-wheel-up-button):
|
||||
Declare with defvar, not with defcustom.
|
||||
|
||||
* cus-dep.el: Don't require 'autoload.
|
||||
(custom-make-dependencies): Handle :version also for autoloaded
|
||||
options.
|
||||
|
@ -52,7 +52,7 @@
|
||||
(set-default var button)
|
||||
(when active (mouse-wheel-mode 1))))
|
||||
|
||||
(defcustom mouse-wheel-down-button 4
|
||||
(defvar mouse-wheel-down-button 4
|
||||
"Obsolete. Use `mouse-wheel-down-event'.")
|
||||
(defcustom mouse-wheel-down-event
|
||||
;; In the latest versions of XEmacs, we could just use mouse-%s as well.
|
||||
@ -63,7 +63,7 @@
|
||||
:type 'symbol
|
||||
:set 'mouse-wheel-change-button)
|
||||
|
||||
(defcustom mouse-wheel-up-button 5
|
||||
(defvar mouse-wheel-up-button 5
|
||||
"Obsolete. Use `mouse-wheel-up-event'.")
|
||||
(defcustom mouse-wheel-up-event
|
||||
;; In the latest versions of XEmacs, we could just use mouse-%s as well.
|
||||
|
Loading…
Reference in New Issue
Block a user