From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: storm@cua.dk (Kim F. Storm) Newsgroups: gmane.emacs.devel Subject: Patch to smtpmail.el -- don't record undo information in smtp trace buffer. Date: Mon, 05 Dec 2005 00:18:45 +0100 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1133738489 21225 80.91.229.2 (4 Dec 2005 23:21:29 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 4 Dec 2005 23:21:29 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 05 00:21:21 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Ej390-0001q2-Ob for ged-emacs-devel@m.gmane.org; Mon, 05 Dec 2005 00:19:46 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ej396-00028W-Sb for ged-emacs-devel@m.gmane.org; Sun, 04 Dec 2005 18:19:52 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ej38t-00027y-3m for emacs-devel@gnu.org; Sun, 04 Dec 2005 18:19:39 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ej38q-00027T-A6 for emacs-devel@gnu.org; Sun, 04 Dec 2005 18:19:38 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ej38p-00027O-TT for emacs-devel@gnu.org; Sun, 04 Dec 2005 18:19:35 -0500 Original-Received: from [195.41.46.236] (helo=pfepb.post.tele.dk) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Ej39E-0007h3-Lh for emacs-devel@gnu.org; Sun, 04 Dec 2005 18:20:00 -0500 Original-Received: from kfs-l.imdomain.dk.cua.dk (0x503e2644.bynxx3.adsl-dhcp.tele.dk [80.62.38.68]) by pfepb.post.tele.dk (Postfix) with SMTP id E83175EE032 for ; Mon, 5 Dec 2005 00:19:27 +0100 (CET) Original-To: emacs-devel@gnu.org User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) 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: news.gmane.org gmane.emacs.devel:46972 Archived-At: Is there any reason to keep undo information in the SMTP session buffer used by smtpmail-via-smtp? The following patch seems to be TRT: *** smtpmail.el 16 Nov 2005 23:29:56 +0100 1.78 --- smtpmail.el 05 Dec 2005 00:16:21 +0100 *************** *** 605,610 **** --- 605,611 ---- ;; clear the trace buffer of old output (with-current-buffer process-buffer + (setq buffer-undo-list t) (erase-buffer)) ;; open the connection to the server -- Kim F. Storm http://www.cua.dk