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: window.el has no provide Date: Thu, 12 Feb 2015 10:52:02 -0500 Message-ID: <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=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1423756361 22398 80.91.229.3 (12 Feb 2015 15:52:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 12 Feb 2015 15:52:41 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 12 16:52:28 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 1YLw44-0000zQ-GY for ged-emacs-devel@m.gmane.org; Thu, 12 Feb 2015 16:52:28 +0100 Original-Received: from localhost ([::1]:50844 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLw43-0001aX-Qo for ged-emacs-devel@m.gmane.org; Thu, 12 Feb 2015 10:52:27 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53718) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLw3l-0001Y9-9q for emacs-devel@gnu.org; Thu, 12 Feb 2015 10:52:10 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLw3i-0002zh-4T for emacs-devel@gnu.org; Thu, 12 Feb 2015 10:52:09 -0500 Original-Received: from mail-ie0-f176.google.com ([209.85.223.176]:33734) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLw3i-0002yH-04 for emacs-devel@gnu.org; Thu, 12 Feb 2015 10:52:06 -0500 Original-Received: by iecar1 with SMTP id ar1so12832531iec.0 for ; Thu, 12 Feb 2015 07:52:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; bh=lvrS8ubmEdij1/iFX3ObPyMPsyAsuW7Gy9iAxh0OCY8=; b=pWjzPoY0X9uGR++L3839phDF/LnRFZX92mW6+kIELoHyW5+upSila9h4A51MGy5cnr 3pLnbj938jp4gZw3j+v+JefDGvRL8bUttwWIVWTAhvkFZFHBP6iY+x8DSguJG1y95OOB 0RdYtiQ9TSbR3+qnyOHjHBATrVg30WW7Y20qSMtN38xRMAqnVgIPBXBvPGCN0k5ErKGR /F6geDB/xf9ZEN1+jnE+4RfU7jaIt7DUp51fM/tRXvRjup7ahCOqz3TZJ0Yh3sLR/TVV K2RUlSa/WNhs+ORnH0zOfukVz5G39LkSMxu2mlnkbw/pQCH1UmnSb59j17BfhqH6XRVU jzPw== X-Received: by 10.50.4.40 with SMTP id h8mr4668326igh.34.1423756324735; Thu, 12 Feb 2015 07:52:04 -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 l15sm2612806iod.33.2015.02.12.07.52.02 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 12 Feb 2015 07:52:03 -0800 (PST) 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.176 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:182957 Archived-At: Is there a reason that there is no provide in window.el? If not, can one = be added? diff --git lisp/window.el lisp/window.el index abc6006..3f43a71 100644 --- lisp/window.el +++ lisp/window.el @@ -7990,4 +7990,6 @@ Otherwise, consult the value of = `truncate-partial-width-windows' (define-key ctl-x-map "+" 'balance-windows) (define-key ctl-x-4-map "0" 'kill-buffer-and-window) =20 +(provide 'window) + ;;; window.el ends here