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: Thu, 5 Jun 2008 05:25:51 +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 1212636366 16820 80.91.229.12 (5 Jun 2008 03:26:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 5 Jun 2008 03:26:06 +0000 (UTC) Cc: joakim@verona.se, emacs-devel@gnu.org To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 05 05:26:48 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 1K467i-0003Lq-Oe for ged-emacs-devel@m.gmane.org; Thu, 05 Jun 2008 05:26:47 +0200 Original-Received: from localhost ([127.0.0.1]:41213 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K466w-0001SV-81 for ged-emacs-devel@m.gmane.org; Wed, 04 Jun 2008 23:25:58 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K466r-0001RL-GS for emacs-devel@gnu.org; Wed, 04 Jun 2008 23:25:53 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K466q-0001R9-GX for emacs-devel@gnu.org; Wed, 04 Jun 2008 23:25:53 -0400 Original-Received: from [199.232.76.173] (port=59023 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K466q-0001R6-BK for emacs-devel@gnu.org; Wed, 04 Jun 2008 23:25:52 -0400 Original-Received: from wa-out-1112.google.com ([209.85.146.181]:49182) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K466q-0005Vc-0N for emacs-devel@gnu.org; Wed, 04 Jun 2008 23:25:52 -0400 Original-Received: by wa-out-1112.google.com with SMTP id m34so267247wag.10 for ; Wed, 04 Jun 2008 20:25:51 -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=74UBcf15afAe9pGMu1HzBJoipVW51FXuHeeoNRS7vsk=; b=bzIxepDaTAUpSUXCQ4Y1k3M3yd2+NaxAUQUmWSvM/PI2A7kLNo8m0Nf4KFNsfws+eu vWgh0qJov457CIICYjXxtrQ6eK0HTrtMkyQiUpbkTkMGPqYQou/Hfc2VPpHMEn1k/SH1 bpiWqVk+Onl898MhgZE2jn0KpfpDjZ8DTm5tU= 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=oTJsxmw1sIx7S9a9sP+IzP9fkzRP+D+t2MH7XYRwqh5Vn7ryARET4y9UXfWEE4DjYl PiLawEfDetpoldFsawAMAqtSL+RBMYLFCTc3w4G2GLMvcJ+NRkN5oEJ1Ls1gE0bAWS0M ixEfvpAEc3dBgKCEZXHY7mQ1CKTysRtyhmRZY= Original-Received: by 10.115.48.15 with SMTP id a15mr912770wak.217.1212636351145; Wed, 04 Jun 2008 20:25:51 -0700 (PDT) Original-Received: by 10.114.167.17 with HTTP; Wed, 4 Jun 2008 20:25:51 -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:98447 Archived-At: > Just remove that. OK. > It's probably OK for window-parameters to return the alist itself, tho > a copy-alist wouldn't hurt. I've done that. > OTOH I did miss the fact that window-parameter returns the cons-cell > rather than just the value of the parameter. This is an error. Oops. Fixed. > Also I think that set-window-parameter should not return the alist, but > the value just set (i.e. `val'). OK, done too. Juanma