From xemacs-m  Fri Mar 28 13:48:13 1997
Received: from elc1.dina.kvl.dk (elc1.dina.kvl.dk [130.225.40.228])
	by xemacs.org (8.8.5/8.8.5) with SMTP id NAA19691
	for <xemacs-beta@xemacs.org>; Fri, 28 Mar 1997 13:48:12 -0600 (CST)
Received: from zuse.dina.kvl.dk (zuse.dina.kvl.dk [130.225.40.245]) by elc1.dina.kvl.dk (8.6.12/8.6.4) with ESMTP id UAA15051; Fri, 28 Mar 1997 20:37:14 +0100
Received: (abraham@localhost) by zuse.dina.kvl.dk (8.6.12/8.6.4) id UAA15330; Fri, 28 Mar 1997 20:46:21 +0100
Sender: abraham@dina.kvl.dk
To: sperber@informatik.uni-tuebingen.de (Michael Sperber [Mr. Preprocessor])
Cc: xemacs-beta@xemacs.org, David Moore <dmoore@ucsd.edu>
Subject: Re: XEmacs crash (efs-related)
References: <199703271307.OAA03894@atusel63.alcatel.at> <rvwwqt6nt1.fsf@sdnp5.ucsd.edu> <m2d8slc87w.fsf@altair.xemacs.org> <rvvi6d6irv.fsf@sdnp5.ucsd.edu> <m2u3lwq0qq.fsf@altair.xemacs.org> <rvpvwk7p46.fsf@sdnp5.ucsd.edu> <y9ld8skyvhh.fsf@modas.informatik.uni-tuebingen.de>
Organization: The Church of Emacs
X-Face: +kRV2]2q}lixHkE{U)mY#+6]{AH=yN~S9@IFiOa@X6?GM<U{B+4e{k79.Ya{~':DblFPCg$
 @60,BfLv2@SKZ19cMWK0/C'v;tM:|6B'R}U1rp6CL&kN({9<zF/V{:JCg27yC)9oZjeqcQawzKfiNL
 t9}`vjmK["dRQC/qGFQq"%u|Q`:6{"Rz}b(dnl_"3$Jtqimi>|8MBp/
From: Per Abrahamsen <abraham@dina.kvl.dk>
Date: 28 Mar 1997 20:46:20 +0100
In-Reply-To: sperber@informatik.uni-tuebingen.de's message of 28 Mar 1997 14:52:26 +0100
Message-ID: <rjafnn4x6b.fsf@zuse.dina.kvl.dk>
Lines: 26
X-Mailer: Gnus v5.4.37/Emacs 19.34
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit


sperber@informatik.uni-tuebingen.de (Michael Sperber [Mr. Preprocessor]) writes:

> ;;;###autoload
> (defvar dired-refresh-automatically t
>   "*If non-nil, refresh Dired buffers automatically on arbitrary
> file operations.")
> 
> sound all right to you?

Yes, but

1) The first line should be a complete sentence (both custom and
   apropos works best that way).

2) I think it is a good idea if we start thinking of `defcustom' as
   the way to declare user options, and `defvar' as reserved for
   internal variables.  Even if you just replace defvar with
   defcustom (i.e. use no keywords), it will help customize.

;;;###autoload
(defcustom dired-refresh-automatically t
  "*If non-nil, refresh dired buffers automatically after file operations."
  :type 'boolean
  :group 'dired)

