From xemacs-m  Sat Dec 14 04:54:07 1996
Received: from venus.Sun.COM (venus.Sun.COM [192.9.25.5]) by xemacs.cs.uiuc.edu (8.8.3/8.8.3) with SMTP id EAA11940 for <xemacs-beta@xemacs.org>; Sat, 14 Dec 1996 04:54:06 -0600 (CST)
Received: from infodock.com ([206.13.40.192]) by venus.Sun.COM (SMI-8.6/mail.byaddr) with ESMTP id CAA10455 for <xemacs-beta@xemacs.org>; Sat, 14 Dec 1996 02:53:38 -0800
Received: (from weiner@localhost) by infodock.com (8.8.0/8.7.3) id CAA01172; Sat, 14 Dec 1996 02:53:08 -0800
Date: Sat, 14 Dec 1996 02:53:08 -0800
From: Bob Weiner <weiner@infodock.com>
Message-Id: <199612141053.CAA01172@infodock.com>
To: xemacs-beta@xemacs.org
Subject: mouse-avoidance-mode variable should be autoloaded.

This allows for an Option menu item that toggles this mode
on and off.  The state of the option depends on having the minor
mode variable defined, prior to loading the package.

Here is a patch to avoid.el to achieve this.

--- avoid.el~	Sun Sep 15 11:32:46 1996
+++ avoid.el	Sat Dec 14 02:47:43 1996
@@ -72,6 +72,7 @@
 
 (provide 'avoid)
 
+;;;###autoload
 (defvar mouse-avoidance-mode nil
   "Value is t or a symbol if the mouse pointer should avoid the cursor.
 See function `mouse-avoidance-mode' for possible values.  Changing this

