From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: Adding parameters to windows Date: Wed, 4 Jun 2008 23:56:53 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1212616637 31310 80.91.229.12 (4 Jun 2008 21:57:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Jun 2008 21:57:17 +0000 (UTC) Cc: Stefan Monnier , emacs-devel@gnu.org To: joakim@verona.se Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 04 23:57:58 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K40zM-0001Bw-BZ for ged-emacs-devel@m.gmane.org; Wed, 04 Jun 2008 23:57:48 +0200 Original-Received: from localhost ([127.0.0.1]:44086 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K40yZ-000242-TL for ged-emacs-devel@m.gmane.org; Wed, 04 Jun 2008 17:56:59 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K40yU-00021k-T1 for emacs-devel@gnu.org; Wed, 04 Jun 2008 17:56:54 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K40yU-00021J-Gf for emacs-devel@gnu.org; Wed, 04 Jun 2008 17:56:54 -0400 Original-Received: from [199.232.76.173] (port=46455 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K40yU-00021G-BZ for emacs-devel@gnu.org; Wed, 04 Jun 2008 17:56:54 -0400 Original-Received: from py-out-1112.google.com ([64.233.166.176]:21537) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K40yU-0006aH-08 for emacs-devel@gnu.org; Wed, 04 Jun 2008 17:56:54 -0400 Original-Received: by py-out-1112.google.com with SMTP id p76so225944pyb.1 for ; Wed, 04 Jun 2008 14:56:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=C46lhD+xyOXviP0NwHTv3NL3FvUxhrRG4h4eR7Y4k54=; b=JEveXGUqUERZK3k5NFSH1DVE4yS3EiIsvnTYs25PX1vnk6VjvJN+ifGzLBH912GPXa rb5CfdwKq4iLEEhAYt6qyoXE5FMNlyP5FTY7HkaoFqkLidgieaDGeYOkjsxihdhmNQvN i50q0HdJfs2Qs9+AJHYLtDcae1aYuI8DDbOkM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=ZEdShb2iwQMLP4zIy/cWWeN+JBV/LofDK8NLC9/1htq9BGWDxBo/CYTX+BvDS62yKb N7uc424fH7DjvqH8Oq98bEey7YaiHddx+wM+wJ0Q1LAmKLmimQ9edzRQakAMFNDjtpY0 kRypoT20OziKNFeejQfVw+A9Mg0Lrc8SfU0s4= Original-Received: by 10.114.161.11 with SMTP id j11mr736508wae.105.1212616613192; Wed, 04 Jun 2008 14:56:53 -0700 (PDT) Original-Received: by 10.114.167.17 with HTTP; Wed, 4 Jun 2008 14:56:53 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:98429 Archived-At: On Wed, Jun 4, 2008 at 11:25 PM, wrote: > Well, none, at present. This patch is only one half of the > "window nodelete/group" patch. The meaningful parameters are defined in > the other half. So, its probably better to remove this comment for now. That depends on whether the other half is going to be installed or not... > Ok, maybe not. Is there any rule of thumb to decide to do the one or the other? Not sure, but it is a bit strange to let the lisp level directly manipulate an alist that is part of the window structure, even if it is not unsafe at this moment. AFAICS, frame-parameters returns a copy. > ** Functions to handle window parameters were added, similar to the > functions for frame parameters. BTW, there is no function to remove a parameter (though, truth be told, there's no remove-frame-parameter either). Juanma