From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: unlinking links Date: Thu, 11 Dec 2014 19:39:09 +0100 Message-ID: <87a92uvxo2.fsf@nicolasgoaziou.fr> References: <20141204144851.GF28615@pacific.linksys.moosehall> <87bnnjibrq.fsf@nicolasgoaziou.fr> <20141210233029.GH28615@pacific.linksys.moosehall> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xz8dd-0000Cr-Mu for emacs-orgmode@gnu.org; Thu, 11 Dec 2014 13:39:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xz8cz-0003VZ-TY for emacs-orgmode@gnu.org; Thu, 11 Dec 2014 13:38:57 -0500 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:40834) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xz8cz-0003Pl-Nn for emacs-orgmode@gnu.org; Thu, 11 Dec 2014 13:38:17 -0500 In-Reply-To: <20141210233029.GH28615@pacific.linksys.moosehall> (Adam Spiers's message of "Wed, 10 Dec 2014 23:30:30 +0000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Adam Spiers Cc: org-mode mailing list , John Kitchin Adam Spiers writes: >> FWIW, I don't think it is useful enough for inclusion in core. > > Why not? Because we cannot possibly stuff everything related to Org in core. The function saves a few keystrokes, but considering how often I expect it to be used, the benefit from using it seems rather negligible. OTOH, putting it on Worg gives it some exposure, so it isn't lost in the mailing list archives. Of course, this is all IMO, and other developers, or Bastien, could disagree. > Or perhaps I should ask: how is it determined whether > something's useful enough for core? :-) As for myself, the following works surprisingly well in various situations: (defun ngz-answering-helper (&optional from-wife-p) (cond (from-wife-p 'yes) ((= (random 10) 0) 'yes) (t 'no))) Regards,