From xemacs-m  Tue Apr  8 09:20:01 1997
Received: from alphatech.com (erebus.alphatech.com [198.112.236.2])
	by xemacs.org (8.8.5/8.8.5) with SMTP id JAA29468
	for <xemacs-beta@xemacs.org>; Tue, 8 Apr 1997 09:19:52 -0500 (CDT)
Received: from venus.alphatech.com by alphatech.com (4.1/SMI-4.1)
	id AA01014; Tue, 8 Apr 97 10:14:28 EDT
Received: from pochacco.alphatech.com by venus.alphatech.com (4.1/SMI-4.1)
	id AA20471; Tue, 8 Apr 97 10:22:57 EDT
Received: by pochacco.alphatech.com (SMI-8.6/SMI-SVR4)
	id KAA03221; Tue, 8 Apr 1997 10:11:44 -0400
Sender: greg@pochacco.alphatech.com
From: greg@alphatech.com (Greg Klanderman)
To: Hrvoje Niksic <hniksic@srce.hr>
Cc: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: Re: compile.el customized
References: <kigiv1xhe31.fsf@jagor.srce.hr>
Reply-To: greg@alphatech.com
Mime-Version: 1.0 (generated by tm-edit 7.106)
Content-Type: text/plain; charset=US-ASCII
Date: 08 Apr 1997 10:11:43 -0400
In-Reply-To: Hrvoje Niksic's message of 08 Apr 1997 14:52:02 +0200
Message-Id: <ugafn961uo.fsf@pochacco.alphatech.com>
Lines: 38
X-Mailer: Gnus v5.4.33/XEmacs 19.15(beta103)


Hrvoje,

you forgot one variable (probably because I forgot a "*" at the
beginning of the doc string when I added it a while back).


(defvar compilation-mouse-motion-initiate-parsing t
  "When set to a non-nil value, mouse motion over the compilation/grep output
buffer may initiate parsing of the error messages or grep hits")

should be changed to something like

(defcustom compilation-mouse-motion-initiate-parsing t
  "*Should mouse motion over the compilation buffer initiate parsing?
When set to a non-nil value, mouse motion over the compilation/grep
buffer may initiate parsing of the error messages or grep hits.
When this is nil, errors and grep matches will no longer be 
highlighted until they have been parsed, but may still be selected
with the center mouse button.  This will then initiate parsing
and jump to the corresponding source line."
  :type 'boolean
  :group 'compilation)

(i haven't used custom yet so let me know if this is wrong)
(i updated the docstring too to be a little more clear)

thanks,
Greg


>>>>> "Hrv" == Hrvoje Niksic <hniksic@srce.hr> writes:
Hrv> 
Hrv> Only I'm not sure how `defcustom' interacts with the `;;;###autoload'
Hrv> cookie.
Hrv> 
Hrv> --- compile.el.orig	Tue Apr  8 14:33:35 1997
Hrv> +++ compile.el	Tue Apr  8 14:43:38 1997

