From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/78292 Path: news.gmane.org!not-for-mail From: David Engster Newsgroups: gmane.emacs.gnus.general Subject: Re: I don't want C-x s to save gnus files without asking Date: Fri, 01 Apr 2011 15:15:39 +0200 Message-ID: <87ei5m9kp0.fsf@engster.org> References: <878vvuqg0f.fsf@jidanni.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1301663832 21444 80.91.229.12 (1 Apr 2011 13:17:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 1 Apr 2011 13:17:12 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M26600@lists.math.uh.edu Fri Apr 01 15:17:06 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q5eDo-0001bl-5W for ding-account@gmane.org; Fri, 01 Apr 2011 15:17:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1Q5eDM-0006tc-Ve; Fri, 01 Apr 2011 08:16:37 -0500 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1Q5eDL-0006tK-A2 for ding@lists.math.uh.edu; Fri, 01 Apr 2011 08:16:35 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1Q5eDJ-0006qp-Mb for ding@lists.math.uh.edu; Fri, 01 Apr 2011 08:16:35 -0500 Original-Received: from v3-1008.vxen.de ([79.140.41.8]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1Q5eDE-0007rG-L8 for ding@gnus.org; Fri, 01 Apr 2011 15:16:28 +0200 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=randomsample.de; s=a; h=Content-Type:MIME-Version:Message-ID:Date:References:In-Reply-To:Subject:To:From; bh=F5r83qEEFbQQIWaRsN2xWqR2PcvVbvC4bfUVncNc79o=; b=rIkQDym5o6NFgL4bRyqPDsK3QVEm1E6N5LIc/dg9+FnkfMZihtS0wia4T3+GcNCWxS0AYB7gYUYhqDIBucZMqP/a5169I9aIug0/+zMNjkGaZY6ZFb9t3hQrYCmJgKvV; Original-Received: from dslc-082-083-036-054.pools.arcor-ip.net ([82.83.36.54] helo=spaten) by v3-1008.vxen.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1Q5eDD-0002Mz-EG for ding@gnus.org; Fri, 01 Apr 2011 15:16:27 +0200 In-Reply-To: <878vvuqg0f.fsf@jidanni.org> (jidanni@jidanni.org's message of "Fri, 01 Apr 2011 21:04:48 +0800") User-Agent: Gnus/5.110014 (No Gnus v0.14) Emacs/24.0.50 (gnu/linux) Mail-Followup-To: ding@gnus.org X-Spam-Score: -2.0 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:78292 Archived-At: 'jidanni' writes: > I don't want C-x s to save gnus files without asking > > C-x s runs the command save-some-buffers, which is an interactive > compiled Lisp function in `files.el'. > > It is bound to C-x s. > > Save some modified file-visiting buffers. Asks user about each one. > ^^^^^^^^^^^^^^^^^^^^^^^^^ > What can I do to get the documented behavior back? In the hope that this is the last thread you're opening regarding this issue... (add-hook 'gnus-started-hook (lambda () (when (buffer-live-p gnus-dribble-buffer) (with-current-buffer gnus-dribble-buffer (setq buffer-save-without-query nil)))))