From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Welle Subject: Re: Concatenating Org property values from parent subtrees Date: Sat, 29 Sep 2018 21:26:23 +0200 Message-ID: <87k1n414ww.fsf@luisa.c0t0d0s0.de> References: <87k1n46tdw.fsf@luisa.c0t0d0s0.de> <87k1n42jm5.fsf@luisa.c0t0d0s0.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g6Ksq-0000ty-Ky for emacs-orgmode@gnu.org; Sat, 29 Sep 2018 15:26:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g6Ksm-0007vT-Mu for emacs-orgmode@gnu.org; Sat, 29 Sep 2018 15:26:32 -0400 Received: from mout.gmx.net ([212.227.17.21]:60135) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1g6Ksm-0007uz-Dk for emacs-orgmode@gnu.org; Sat, 29 Sep 2018 15:26:28 -0400 Received: from stella.c0t0d0s0.de ([89.204.155.90]) by mail.gmx.com (mrgmx102 [212.227.17.168]) with ESMTPSA (Nemesis) id 0MVayZ-1gFN9B0iS7-00Z2A4 for ; Sat, 29 Sep 2018 21:26:26 +0200 Received: from stella.c0t0d0s0.de ([89.204.155.90]) by mail.gmx.com (mrgmx102 [212.227.17.168]) with ESMTPSA (Nemesis) id 0MVayZ-1gFN9B0iS7-00Z2A4 for ; Sat, 29 Sep 2018 21:26:26 +0200 Received: from Stella (stella.c0t0d0s0.de [192.168.42.1]) by stella.c0t0d0s0.de (Postfix) with ESMTP id E9EB4181119 for ; Sat, 29 Sep 2018 21:26:23 +0200 (CEST) In-Reply-To: <87k1n42jm5.fsf@luisa.c0t0d0s0.de> (Michael Welle's message of "Sat, 29 Sep 2018 21:23:30 +0200") 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" To: emacs-orgmode@gnu.org Hello, Michael Welle writes: [...] > (defun hmw/org-prop-append(prop value) > (save-excursion > (org-up-heading-safe) > (format "%s %s" value (cdr (assq prop > (car (org-babel-params-from-properties))))))) > > (defalias 'A 'hmw/org-prop-append) and I just realise that it works with code blocks only. I guess the way to get general property values has to be adapted. Regards hmw