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: [Emacs-diffs] trunk r113747: lisp/frameset.el: Convert `frameset' to vector and add new slots. Date: Thu, 8 Aug 2013 18:32:38 +0200 Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1375979623 8333 80.91.229.3 (8 Aug 2013 16:33:43 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 8 Aug 2013 16:33:43 +0000 (UTC) Cc: Emacs developers To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 08 18:33:45 2013 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 1V7T9k-0002pT-Ns for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 18:33:44 +0200 Original-Received: from localhost ([::1]:42582 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7T9k-0007cp-BW for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 12:33:44 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7T9U-0007b1-Qc for emacs-devel@gnu.org; Thu, 08 Aug 2013 12:33:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7T9L-0002Jn-76 for emacs-devel@gnu.org; Thu, 08 Aug 2013 12:33:28 -0400 Original-Received: from mail-ea0-x231.google.com ([2a00:1450:4013:c01::231]:52279) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7T9K-0002Ih-Ue for emacs-devel@gnu.org; Thu, 08 Aug 2013 12:33:19 -0400 Original-Received: by mail-ea0-f177.google.com with SMTP id f15so1531237eak.36 for ; Thu, 08 Aug 2013 09:33:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=kYlPozghqatUazAs0qhb3CZcFrftM5l7oyNfw3UFz1k=; b=eT9oMO9sBErxwDGBGpd5EUNKTODiOiS+wHkNNdaH/nSGd0RuhtbIUGm/1202moeGx1 OQ/MLJYMaGroDF3/LYQ09yIPIdoPLl/TkIf1jimk1MQKqB660r9IKXEJoAE6Ma/tgH8Q 1vlNTNU3Sr/xugca7yj2Y+3zj0SCVp6jQeSDmOyM1yuUB7KBu7ZUo66sWxOMil9PAYyG GebG4Xd0Ve1s4TlnXbI05AWfDFWoCaWnJO+Y5aG0XqdKAccBgykCYwT3KnOAzf1RHUJT Q9lGWeA5ypp4uJzOLZlxF1xVcL3qToEe1tQW1T30iZDNbr3ijIwX8hAP2gypQHCZhG0w mkmg== X-Received: by 10.14.32.65 with SMTP id n41mr9012291eea.129.1375979598193; Thu, 08 Aug 2013 09:33:18 -0700 (PDT) Original-Received: by 10.14.133.15 with HTTP; Thu, 8 Aug 2013 09:32:38 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::231 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:162520 Archived-At: On Thu, Aug 8, 2013 at 4:40 PM, Stefan Monnier wrote: > I don't think there's a way to do that. Hmm, there's no reason why this wouldn't work: ;;;###autoload (autoload 'frameset-p "frameset" "Return non-nil if OBJECT is a frameset, nil otherwise." nil) and, though ugly, is still prettier than having to require 'frameset from register.el (which has to be done at the point of call of frameset-p, because register.el is preloaded). WDYT? J