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 15:43:36 +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 1375969464 15365 80.91.229.3 (8 Aug 2013 13:44:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 8 Aug 2013 13:44:24 +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 15:44:26 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 1V7QVt-0003F6-Pj for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 15:44:25 +0200 Original-Received: from localhost ([::1]:38161 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7QVt-0000ov-Cn for ged-emacs-devel@m.gmane.org; Thu, 08 Aug 2013 09:44:25 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:52080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7QVo-0000lx-NJ for emacs-devel@gnu.org; Thu, 08 Aug 2013 09:44:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7QVl-0001BG-Pv for emacs-devel@gnu.org; Thu, 08 Aug 2013 09:44:20 -0400 Original-Received: from mail-ea0-x22f.google.com ([2a00:1450:4013:c01::22f]:59962) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7QVl-0001Ak-CW for emacs-devel@gnu.org; Thu, 08 Aug 2013 09:44:17 -0400 Original-Received: by mail-ea0-f175.google.com with SMTP id m14so1428338eaj.20 for ; Thu, 08 Aug 2013 06:44:16 -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=XVFE8OHNbcrTq45KbwPFn/Det5tBPbv6+XlcODWKH+g=; b=xqFo1EgdOf1CdYlsyF6uiNJm9g4UJyH4tbqUFpBan2oNzLYWiBuiKH+ZdXjGy9b0qS p5KK7xUcBkzXLHD3K6xrvyE3miKfwTjwtY3TJCWAMkKKKwNMGnwk7yeetQlmFpE9Cc8U GbnjbIyzzW8jNTrKQWHk8XpAJw00k6mlD9ORYhMK41lAw84AegpgakdFkC2+1YGiv6DH RTaGkshZ+HTkeellHI72+tNg5oyi1g9foWqkouW24i29Q+st8ybC7UdgsGPHFmbuB0TS gJIHwIcK6jZyikGCAQnmM6zAsDq3Mk9BvR7FEnGWnHIzf9QAupNl8mU36P319wPGhr1S OmXA== X-Received: by 10.14.32.65 with SMTP id n41mr8280144eea.129.1375969456518; Thu, 08 Aug 2013 06:44:16 -0700 (PDT) Original-Received: by 10.14.133.15 with HTTP; Thu, 8 Aug 2013 06:43:36 -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::22f 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:162504 Archived-At: On Thu, Aug 8, 2013 at 3:18 PM, Stefan Monnier wrote: > You could make it more clearly internal by renaming it to something like > frameset--super-dangerous-constructor-do-not-use. Well, I could, but I expect users of the package will take the hint that everything else is documented and make-frameset is not. > You could also replace it with a constructor that does the right thing. > Something like [...] > But I find this way really hideous. "Hideous" is too nice a word. > No, I don't think there's such a thing as slot-doc-strings ;-) > Neither in cl-defstruct, nor in Common-Lisp itself. Well, (put 'SLOT 'function-doctstring "Doc") is then. BTW, how do I mark the built-in frameset-p as autoloaded? J