]> code.delx.au - gnu-emacs/commitdiff
* lisp/mouse.el (mouse): Consolidate group definition here
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jul 2016 15:08:21 +0000 (11:08 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 13 Jul 2016 15:08:21 +0000 (11:08 -0400)
* lisp/cus-edit.el (mouse): Remove both group definitions.

lisp/cus-edit.el
lisp/mouse.el

index 60d07f9bc77624fda8d34eabbfadc9ba5bb0c5c7..ef1274534d69d3d838eb06a827d393d03768537a 100644 (file)
   :link '(custom-manual "(emacs)Emulation")
   :group 'editing)
 
-(defgroup mouse nil
-  "Mouse support."
-  :group 'editing)
-
 (defgroup outlines nil
   "Support for hierarchical outlining."
   :group 'wp)
   "Input from the keyboard."
   :group 'environment)
 
-(defgroup mouse nil
-  "Input from the mouse."
-  :group 'environment)
-
 (defgroup menu nil
   "Input from the menus."
   :group 'environment)
index f5953265ff0e56c486877f00dccbda0da41af4f3..75b13c4409c66842bb1abfbcbea3e2e7331177a3 100644 (file)
 ;; Indent track-mouse like progn.
 (put 'track-mouse 'lisp-indent-function 0)
 
+(defgroup mouse nil
+  "Input from the mouse."  ;; "Mouse support."
+  :group 'environment
+  :group 'editing)
+
 (defcustom mouse-yank-at-point nil
   "If non-nil, mouse yank commands yank at point instead of at click."
   :type 'boolean