From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Jordon Biondo Newsgroups: gmane.emacs.devel Subject: Re: window.el has no provide Date: Thu, 12 Feb 2015 14:32:32 -0500 Message-ID: References: <9332B768-1714-4C84-88E5-91A8197F53AF@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1423769571 5728 80.91.229.3 (12 Feb 2015 19:32:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 12 Feb 2015 19:32:51 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 12 20:32:51 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 1YLzVK-0004YQ-OM for ged-emacs-devel@m.gmane.org; Thu, 12 Feb 2015 20:32:50 +0100 Original-Received: from localhost ([::1]:51839 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLzVJ-0006bH-Lz for ged-emacs-devel@m.gmane.org; Thu, 12 Feb 2015 14:32:49 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:34379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLzVE-0006Xm-52 for emacs-devel@gnu.org; Thu, 12 Feb 2015 14:32:45 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLzV9-0005gA-C4 for emacs-devel@gnu.org; Thu, 12 Feb 2015 14:32:44 -0500 Original-Received: from mail-ie0-f172.google.com ([209.85.223.172]:37047) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLzV9-0005fY-88 for emacs-devel@gnu.org; Thu, 12 Feb 2015 14:32:39 -0500 Original-Received: by iecrl12 with SMTP id rl12so12001365iec.4 for ; Thu, 12 Feb 2015 11:32:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=cTWdvFZeUaGTiIxeCfdx2T6PsVzKFS8k1QYmVwJbHGA=; b=monkwIn4CSo7LbND90v9QZdcfpbzE9Ld0uJoNxUgKarVuwwuhMV+EMGxXWzlL52Hca Lrl55a7NHITN8zTWxLDE3lcYuX9MOIXUoDG4dQj4wBsZff8oxO7lEYuoG+sbJeCnu2jv kzsRxJrVlZ76B76XSEXJEn0XTN/ghwtrf0MYnLI5MU++Hthu51rpCK5bjEnjxBeuxtIf sSUK4dOLZ3cCzjqCIb/jA+7LPR+47+cXSdnnbnRn+pxf3zzCYDvo4V3nE5dbj8q1G84s MqO9aMgWw6cgnupzw5PIhJsdBaKBSs+7BKQyVNss1wFYd1efJOsZTKYqkBoNaYzqgGbw OrGw== X-Received: by 10.107.137.226 with SMTP id t95mr3746135ioi.10.1423769558721; Thu, 12 Feb 2015 11:32:38 -0800 (PST) Original-Received: from ?IPv6:2601:4:403:8500:958e:b6d4:b634:f70? ([2601:4:403:8500:958e:b6d4:b634:f70]) by mx.google.com with ESMTPSA id qd2sm1735038igc.22.2015.02.12.11.32.36 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 12 Feb 2015 11:32:37 -0800 (PST) In-Reply-To: X-Mailer: Apple Mail (2.2070.6) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.85.223.172 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:182973 Archived-At: I was getting byte compilation errors when compiling my init.el init.el:631:10:Error: Required feature `window' was not provided My init generates requires for all packages I have configurations for = which is why I=E2=80=99m requiring =E2=80=98window in the first place. I = can=E2=80=99t reliably recreate the issue, but when it does happen, as = you would imagine, (featurep =E2=80=98window) is nil, even though = window.el is loaded. I=E2=80=99ll report a bug if I can reliable = recreate it. Real problem or not, I thought it was weird that there was no provide. > On Feb 12, 2015, at 1:45 PM, Stefan Monnier = wrote: >=20 >> Is there a reason that there is no provide in window.el? >=20 > It's preloaded, so (require 'window) is never needed, and (featurep > 'window) should always be t. >=20 >> If not, can one be added? >=20 > Of course, and it's probably a good idea. I'm just curious what's > the motivation. >=20 >=20 > Stefan