From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Scary undo Date: Tue, 6 May 2008 12:11:29 +0200 Message-ID: References: <48202D32.4020705@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1210068710 9780 80.91.229.12 (6 May 2008 10:11:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 6 May 2008 10:11:50 +0000 (UTC) Cc: Emacs Devel To: "Lennart Borgman (gmail)" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue May 06 12:12:25 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JtK9o-0007qP-HL for ged-emacs-devel@m.gmane.org; Tue, 06 May 2008 12:12:24 +0200 Original-Received: from localhost ([127.0.0.1]:38519 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtK96-0006yY-IR for ged-emacs-devel@m.gmane.org; Tue, 06 May 2008 06:11:40 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JtK90-0006wr-Pp for emacs-devel@gnu.org; Tue, 06 May 2008 06:11:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JtK8z-0006vv-M5 for emacs-devel@gnu.org; Tue, 06 May 2008 06:11:33 -0400 Original-Received: from [199.232.76.173] (port=38497 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JtK8z-0006vd-Cl for emacs-devel@gnu.org; Tue, 06 May 2008 06:11:33 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.181]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JtK8y-0006sH-QK for emacs-devel@gnu.org; Tue, 06 May 2008 06:11:33 -0400 Original-Received: by wa-out-1112.google.com with SMTP id m34so1065889wag.10 for ; Tue, 06 May 2008 03:11:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=ASvjS5gnkuXewePLoEyj9xb2JcKn+aw7GaKcJNZsWxI=; b=Ce5nNe1CzadiWDkwLTsJQhlBnY907HrLnr1wDYmfPqFSFXASrNbYDFna6fuBLGPHMpLoamhKpDI/5PIxkOlFMt50fPQoJXZF+HD0SH0Mfq1zoxIufzrPtbFt6OA9slbXLfPVTYz992HPgLwUbgb3KRxieAUhUCSYVqGx5mTcP3U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ZC+MDQ5ErJNMjfiiTEvVnHN+gZdHI8FGljFIGBkx3zlhze3lYs0SF2HHQjiSvQS8YSi5kKYC6x6tV3KU+eeQ7sh4YLnuIrDBg8O9u0/vKXzXlbsLSwZqBy1LzE4ZVM0xHgoinEHkdGryrED6scmCIUWqM/i2JFilpdl+2jtwcyw= Original-Received: by 10.114.13.1 with SMTP id 1mr500971wam.60.1210068689703; Tue, 06 May 2008 03:11:29 -0700 (PDT) Original-Received: by 10.114.166.20 with HTTP; Tue, 6 May 2008 03:11:29 -0700 (PDT) In-Reply-To: <48202D32.4020705@gmail.com> Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:96578 Archived-At: > I would like to undo a change made by a function that I call with funcall. I > do not know exactly what the function does, but hopefully it will only > indent the current line. However the new indentation might be wrong. Perhaps you could use `atomic-change-group' and friends? Juanma