From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: "Daniel Colascione" Newsgroups: gmane.emacs.devel Subject: Re: [RFC PATCH] Per-window face support Date: Sun, 17 Jun 2018 14:16:35 -0700 Message-ID: References: <5e08587a56ad528599ed5fb259be6335.squirrel@dancol.org> <83muw5vdtr.fsf@gnu.org> <83zhzvyqfy.fsf@gnu.org> <83lgbezs6q.fsf@gnu.org> <6b522145569975d52266e29e8122e86b.squirrel@dancol.org> <50a1e0f98f6cfc5e55fdc2b7df5000b5.squirrel@dancol.org> <49478aa579597ea6557a3976779a234a.squirrel@dancol.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1529270079 32593 195.159.176.226 (17 Jun 2018 21:14:39 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 17 Jun 2018 21:14:39 +0000 (UTC) User-Agent: SquirrelMail/1.4.23 [SVN] Cc: Daniel Colascione , emacs-devel@gnu.org To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jun 17 23:14:35 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUf0L-0008L4-Vg for ged-emacs-devel@m.gmane.org; Sun, 17 Jun 2018 23:14:34 +0200 Original-Received: from localhost ([::1]:56451 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUf2T-0004qO-5x for ged-emacs-devel@m.gmane.org; Sun, 17 Jun 2018 17:16:45 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:57009) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUf2M-0004q6-El for emacs-devel@gnu.org; Sun, 17 Jun 2018 17:16:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUf2L-0002X1-LB for emacs-devel@gnu.org; Sun, 17 Jun 2018 17:16:38 -0400 Original-Received: from dancol.org ([2600:3c01::f03c:91ff:fedf:adf3]:46500) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fUf2L-0002WZ-C5 for emacs-devel@gnu.org; Sun, 17 Jun 2018 17:16:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=dancol.org; s=x; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Cc:To:From:Subject:Date:References:In-Reply-To:Message-ID; bh=juIPxnn5K3FrlNAf2r1WSRl/UNuLZ4UYHzZlUV7nKVY=; b=FKLVMi8/pcJccScnaRXr247EkFC+SrE4GuwfTTVHSHHyiI09WFpmlRNncV4w/6+86wP7b/yQR0cBQPEESmiVvC07r9gpxyAyXdn48YRkU5GHQ3bQ5sCtFY6hVWyjmgRa35DgwZIfZ23e1gdN3kaBPL8OZUpdzOT2jsEP35gtpuKSrtbF6YsKjx14v8XQDZsvgNXPXRGdeAuLXSIufgJvI1jVsXpJiI2fWeAdwcJfNnuEEkkWP0cLLZ357C4gs9tqrmuBCoM6BVZ6bETMGQEGHJmU0ecAwbOOA0Z0RWcwlrVLVt8U3IDDBir6dz0IOQw0T3Y/nqBboPBvmgwzam+Vvw==; Original-Received: from localhost ([127.0.0.1] helo=dancol.org) by dancol.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fUf2J-00010o-Rs; Sun, 17 Jun 2018 14:16:35 -0700 Original-Received: from 127.0.0.1 (SquirrelMail authenticated user dancol) by dancol.org with HTTP; Sun, 17 Jun 2018 14:16:35 -0700 In-Reply-To: X-Priority: 3 (Normal) Importance: Normal X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2600:3c01::f03c:91ff:fedf:adf3 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:226435 Archived-At: >> Sure. Part of the problem is that primitives like assq are hardcoded for >> eq-comparison, > > We can change `assq` to use EQL: any code affected by this change is > fundamentally broken anyway (for the same reason that (defalias 'eq > #'eql) should be safe). > >> We could add more primitives, > > No need, on the contrary: by phasing out `eq` we reduce the traditional > 3 forms of equality to just 2. I strongly object. Getting rid of `eq' is just lying to programmers about object identity.