From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: Popup when buffer file is changed on disk Date: Thu, 10 Feb 2005 18:33:13 -0600 (CST) Message-ID: <200502110033.j1B0XD907696@raven.dms.auburn.edu> References: <200502040036.j140atb03430@raven.dms.auburn.edu> <009d01c50bbb$9aa2fd50$0200a8c0@sedrcw11488> <000c01c50bc5$248dc1e0$6501a8c0@y8h26> <01c50bd6$Blat.v2.4$48866000@zahav.net.il> <001701c50be6$0eb9fa20$0200a8c0@sedrcw11488> <01c50c1c$Blat.v2.4$88670e40@zahav.net.il> <002801c50c2a$cbce93c0$0200a8c0@sedrcw11488> <01c50c31$Blat.v2.4$d9a7a2a0@zahav.net.il> <000301c50c38$6a152640$0200a8c0@sedrcw11488> <200502061704.j16H4iG15131@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1108082563 2205 80.91.229.6 (11 Feb 2005 00:42:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 11 Feb 2005 00:42:43 +0000 (UTC) Cc: lennart.borgman.073@student.lu.se, eliz@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 11 01:42:36 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CzOtI-0004Ig-00 for ; Fri, 11 Feb 2005 01:42:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzP87-0008Rt-DP for ged-emacs-devel@m.gmane.org; Thu, 10 Feb 2005 19:57:55 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CzP64-0007AB-4T for emacs-devel@gnu.org; Thu, 10 Feb 2005 19:55:48 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CzP5y-00076L-02 for emacs-devel@gnu.org; Thu, 10 Feb 2005 19:55:43 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzP5u-00073s-Uv for emacs-devel@gnu.org; Thu, 10 Feb 2005 19:55:38 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CzOlm-00066p-Eg; Thu, 10 Feb 2005 19:34:50 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.12.10/8.12.10) with ESMTP id j1B0Yn9N009660; Thu, 10 Feb 2005 18:34:49 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id j1B0XD907696; Thu, 10 Feb 2005 18:33:13 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: teirllm@dms.auburn.edu In-reply-to: <200502061704.j16H4iG15131@raven.dms.auburn.edu> (message from Luc Teirlinck on Sun, 6 Feb 2005 11:04:45 -0600 (CST)) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:33228 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:33228 I will install the following doc patch to autorevert.el if there are no objections. The patch would be silly if the first line of the docstring were clear enough without it. But I believe that it is not. ===File ~/autorevert-diff-b================================= *** autorevert.el 29 Dec 2004 21:08:55 -0600 1.42 --- autorevert.el 06 Feb 2005 10:48:08 -0600 *************** *** 150,156 **** (auto-revert-set-timer)))) (defcustom auto-revert-stop-on-user-input t ! "When non-nil Auto-Revert Mode stops checking files on user input." :group 'auto-revert :type 'boolean) --- 150,160 ---- (auto-revert-set-timer)))) (defcustom auto-revert-stop-on-user-input t ! "When non-nil Auto-Revert Mode stops checking files on user input. ! This prevents Auto Revert from interfering with your normal Emacs usage. ! This option controls when files are auto-reverted, not which files ! are auto-reverted. Modified files are never auto-reverted, ! regardless of the value of this option." :group 'auto-revert :type 'boolean) ============================================================