From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] emacs-25 8726de6: Finish excising electric indent from `open-line' Date: Sun, 22 Nov 2015 00:25:05 -0500 Message-ID: References: <20151122045054.17266.64677@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1448169923 17548 80.91.229.3 (22 Nov 2015 05:25:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 22 Nov 2015 05:25:23 +0000 (UTC) Cc: Karl Fogel To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Nov 22 06:25:15 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1a0N9G-0003OK-H4 for ged-emacs-devel@m.gmane.org; Sun, 22 Nov 2015 06:25:14 +0100 Original-Received: from localhost ([::1]:54855 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0N9F-0006jb-Tl for ged-emacs-devel@m.gmane.org; Sun, 22 Nov 2015 00:25:13 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0N9C-0006jC-Ru for emacs-devel@gnu.org; Sun, 22 Nov 2015 00:25:11 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a0N99-0002B4-OH for emacs-devel@gnu.org; Sun, 22 Nov 2015 00:25:10 -0500 Original-Received: from pruche.dit.umontreal.ca ([132.204.246.22]:34113) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a0N99-0002As-JR for emacs-devel@gnu.org; Sun, 22 Nov 2015 00:25:07 -0500 Original-Received: from fmsmemgm.homelinux.net (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id tAM5P50C014817; Sun, 22 Nov 2015 00:25:05 -0500 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 60F8FAE22C; Sun, 22 Nov 2015 00:25:05 -0500 (EST) In-Reply-To: (Karl Fogel's message of "Sun, 22 Nov 2015 04:50:54 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Level: X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0.2 X-NAI-Spam-Rules: 2 Rules triggered GEN_SPAM_FEATRE=0.2, RV5497=0 X-NAI-Spam-Version: 2.3.0.9418 : core <5497> : inlines <4017> : streams <1542085> : uri <2087362> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:194984 Archived-At: > * lisp/simple.el (open-line): Remove INTERACTIVE argument. Nit pick: the point of this change is to stop passing `interactive' to `newline'. As a consequence, `interactive' becomes unused so it can be removed, but the removal of `interactive' is not the crucial element. Stefan