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] master c13a4df: Remove the calls to `seq-into` from `seq-concatenate` Date: Mon, 24 Aug 2015 09:37:37 -0400 Message-ID: References: <20150823191413.17383.23210@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1440430675 774 80.91.229.3 (24 Aug 2015 15:37:55 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 24 Aug 2015 15:37:55 +0000 (UTC) Cc: Nicolas Petton To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 24 17:37:48 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 1ZTtoh-0003iQ-51 for ged-emacs-devel@m.gmane.org; Mon, 24 Aug 2015 17:37:47 +0200 Original-Received: from localhost ([::1]:53615 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTtog-0008Td-MO for ged-emacs-devel@m.gmane.org; Mon, 24 Aug 2015 11:37:46 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTrwV-00073s-Th for emacs-devel@gnu.org; Mon, 24 Aug 2015 09:37:44 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTrwQ-0005DY-Qv for emacs-devel@gnu.org; Mon, 24 Aug 2015 09:37:43 -0400 Original-Received: from ironport2-out.teksavvy.com ([206.248.154.181]:34812) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTrwQ-0005DC-Nr for emacs-devel@gnu.org; Mon, 24 Aug 2015 09:37:38 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0ArEwA731xV/5P+d0tcgxCEAoVVuzcJh0sEAgKBPDkUAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNiFsIzyMBAQEHAgEfizqFBQcWhBcFsz+BRSOCO4FZIoJ4AQEB X-IPAS-Result: A0ArEwA731xV/5P+d0tcgxCEAoVVuzcJh0sEAgKBPDkUAQEBAQEBAYEKQQWDXQEBAwFWIwULCzQSFBgNiFsIzyMBAQEHAgEfizqFBQcWhBcFsz+BRSOCO4FZIoJ4AQEB X-IronPort-AV: E=Sophos;i="5.13,465,1427774400"; d="scan'208";a="161181300" Original-Received: from 75-119-254-147.dsl.teksavvy.com (HELO pastel.home) ([75.119.254.147]) by ironport2-out.teksavvy.com with ESMTP; 24 Aug 2015 09:37:37 -0400 Original-Received: by pastel.home (Postfix, from userid 20848) id 3B2B062304; Mon, 24 Aug 2015 09:37:37 -0400 (EDT) In-Reply-To: (Nicolas Petton's message of "Sun, 23 Aug 2015 19:14:13 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 206.248.154.181 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:189104 Archived-At: > Remove the calls to `seq-into` from `seq-concatenate` > Since most new types of seq would have to be defined as sequences (cons > cells or CL structs, mostly), there is no need to convert the seqs to > sequences (which can be a fairly expensive operation). I don't understand this change. Can't it cause two CL-structs to be vconcat'd together, which wouldn't make much sense? Stefan