From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.help Subject: Re: Remove minibuffer message after appending to file Date: Tue, 06 Oct 2009 16:37:27 -0700 Organization: None Message-ID: <7rocok6qmg.fsf@xoc2.stanford.edu> References: <95b0bbb5-f63b-4428-8b5c-55e159998aa1@r36g2000vbn.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1254872461 323 80.91.229.12 (6 Oct 2009 23:41:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 6 Oct 2009 23:41:01 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Oct 07 01:40:52 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MvJeC-00050Z-Gg for geh-help-gnu-emacs@m.gmane.org; Wed, 07 Oct 2009 01:40:48 +0200 Original-Received: from localhost ([127.0.0.1]:41337 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvJeC-0004xS-1U for geh-help-gnu-emacs@m.gmane.org; Tue, 06 Oct 2009 19:40:48 -0400 Original-Path: news.stanford.edu!usenet.stanford.edu!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 19 Original-NNTP-Posting-Host: xoc2.stanford.edu Original-X-Trace: usenet.stanford.edu 1254872247 3406 171.64.109.31 (6 Oct 2009 23:37:27 GMT) Original-X-Complaints-To: action@cs.stanford.edu X-Spook: Nellis Range North Korea Arab Revolutionary Brigades X-Ran: (-D!Zzqu&V2lyk&!"Q`:=H4<$]Uj0ywC(?F%nri<"$D'Fjz8#k1.=#1t8ig0qL)p;UOLds X-Hue: blue X-Attribution: GM Mail-Copies-To: nobody User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) Cancel-Lock: sha1:oGLM0SO6/1bNjNBq1Lzn5O6dSeY= Original-Xref: news.stanford.edu gnu.emacs.help:173618 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:68710 Archived-At: Sebastien wrote: > Is it possible to remove the text > > "Added to " > > which appears in the minibuffer after appending text to a file via > > (append-to-file min max filename) > or > (write-region min max filename t) ? (defun my-append-to-file (start end filename) "Like `append-to-file', but silent." (interactive "r\nFAppend to file: ") (write-region start end filename t 1)) ; ^ ; |