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 r113874: lisp/frameset.el: Use gv-setter declaration. Date: Wed, 14 Aug 2013 17:47:03 +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 1376495268 22859 80.91.229.3 (14 Aug 2013 15:47:48 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 14 Aug 2013 15:47:48 +0000 (UTC) Cc: Emacs developers To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 14 17:47:50 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 1V9dIc-0004Wv-3r for ged-emacs-devel@m.gmane.org; Wed, 14 Aug 2013 17:47:50 +0200 Original-Received: from localhost ([::1]:47180 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9dIb-00048e-JT for ged-emacs-devel@m.gmane.org; Wed, 14 Aug 2013 11:47:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54365) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9dIY-00046l-7Z for emacs-devel@gnu.org; Wed, 14 Aug 2013 11:47:47 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9dIW-0006EF-WE for emacs-devel@gnu.org; Wed, 14 Aug 2013 11:47:46 -0400 Original-Received: from mail-ee0-x22b.google.com ([2a00:1450:4013:c00::22b]:54941) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9dIW-0006E1-Qf for emacs-devel@gnu.org; Wed, 14 Aug 2013 11:47:44 -0400 Original-Received: by mail-ee0-f43.google.com with SMTP id e52so4913279eek.16 for ; Wed, 14 Aug 2013 08:47:44 -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=zxiPaYJgVBh1QO0Q2+Ma6cL00SHeA7nYSWD/BIb/woE=; b=NJ12Ju3gQYehPeW7YxGOoixYX1fWuPQ8UgvogH7rosO8rW6+vBQ/WJ2fY2vjGA7KhB ekhi0CtbqM4dyLic1Yazd0L5CfJmwDyZvacryR35Veww0eWZhFuJGcOqTABVOcTMWs9h g/vxztTFIbrOUqzHASZksjXBN4XkjhCKLg+iZBjBzcMWfl5baV8J7pVgzvHtG/9I+qmx dx17gwGM35msWNlOd0Y2e0WRvW6u36U6ii2LYkKWu8yk9bKpJpQkOp1bly+62aDOuEzY HhUMPRRhP7Nkk271+g5zea3LUi/L+kAHcOeolMhVoLonJ6+zcDffhkkknRP3znKuUOfP G58g== X-Received: by 10.14.115.133 with SMTP id e5mr15770373eeh.27.1376495264025; Wed, 14 Aug 2013 08:47:44 -0700 (PDT) Original-Received: by 10.14.133.15 with HTTP; Wed, 14 Aug 2013 08:47:03 -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:c00::22b 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:162724 Archived-At: On Wed, Aug 14, 2013 at 5:44 PM, Stefan Monnier wrote: > While "internal use" here is fine, any file that does (setf > (frameset-prop ...) ...) will end up with a call to that function in its > .elc, so you won't be able to change the function at will ;-( Well, it's simple enough that I don't expect to have to change it. The "Internal only." bit is just a clue to the user that s/he is not expected to call it directly. > That's not specific to your code, obviously, but I figured it was > worth mentioning. Worth documenting, too. Thanks, J