From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/88234 Path: news.gmane.org!.POSTED!not-for-mail From: Eric Abrahamsen Newsgroups: gmane.emacs.gnus.general Subject: Re: Gnorb and org-refile-use-outline-path Date: Thu, 08 Nov 2018 09:43:35 -0800 Message-ID: <874lcrsbw8.fsf@ericabrahamsen.net> References: <8736sebxyt.fsf@web.de> <87o9b2wwvr.fsf@ericabrahamsen.net> <87k1lpixdm.fsf@web.de> <875zx9wl65.fsf@ericabrahamsen.net> <87tvkt1m6b.fsf@web.de> <87in19s8i2.fsf@ericabrahamsen.net> <87va59s7ci.fsf@web.de> <87bm6zscab.fsf@ericabrahamsen.net> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1541698912 27387 195.159.176.226 (8 Nov 2018 17:41:52 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 8 Nov 2018 17:41:52 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) To: ding@gnus.org Original-X-From: ding-owner+M36444@lists.math.uh.edu Thu Nov 08 18:41:48 2018 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from lists1.math.uh.edu ([129.7.128.208]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gKoJQ-00071B-9X for ding-account@gmane.org; Thu, 08 Nov 2018 18:41:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by lists1.math.uh.edu with smtp (Exim 4.90_1) (envelope-from ) id 1gKoLR-0002gW-Gk; Thu, 08 Nov 2018 11:43:53 -0600 Original-Received: from mx1.math.uh.edu ([129.7.128.32]) by lists1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.90_1) (envelope-from ) id 1gKoLJ-0002dm-P5 for ding@lists.math.uh.edu; Thu, 08 Nov 2018 11:43:45 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx1.math.uh.edu with esmtps (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.90_1) (envelope-from ) id 1gKoLI-0008F5-6p for ding@lists.math.uh.edu; Thu, 08 Nov 2018 11:43:45 -0600 Original-Received: from [195.159.176.226] (helo=blaine.gmane.org) by quimby.gnus.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gKoLH-0001Fz-0i for ding@gnus.org; Thu, 08 Nov 2018 18:43:43 +0100 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1gKoJ8-0006fb-ES for ding@gnus.org; Thu, 08 Nov 2018 18:41:30 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 27 Original-X-Complaints-To: usenet@blaine.gmane.org Cancel-Lock: sha1:pFuY2A99yLJqJ7/i7GB7KOQflds= X-Spam-Score: -1.1 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:88234 Archived-At: Eric Abrahamsen writes: > Michael Heerdegen writes: > >> Eric Abrahamsen writes: >> >>> I was sort of thinking that if the Gnorb option were set to the value >>> of the Org option, then users would just end up with the same behavior >>> in Gnorb that they'd customized in Org. Sometimes I get confused about >>> the order of evaluation of custom options, though -- maybe they would >>> get the pre-customization, default Org value? >> >> Yes, the result would simply depend on whether they set the Org option >> before loading Gnorb. There is no good solution to that problem I >> guess. You could make it so that the default value of the Gnorb option >> would make Gnorb check the value of the Org option dynamically at run >> time. If it is non-nil, we would use that value, if it is nil, we could >> use 'file instead. > > So like this? > > (eval-after-load 'org > (unless gnorb-gnus-refile-use-outline-path > (setq gnorb-gnus-refile-use-outline-path > org-refile-use-outline-path))) Quoted, of course....