[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] org-agenda.el: customise outline path in echo area
From: |
Mikhail Skorzhinskiy |
Subject: |
Re: [PATCH] org-agenda.el: customise outline path in echo area |
Date: |
Sun, 26 Dec 2021 16:49:18 +0300 |
User-agent: |
Cyrus-JMAP/3.5.0-alpha0-4525-g8883000b21-fm-20211221.001-g8883000b |
Glad to hear that.
Should I resubmit the patch in this thread? I agree with your change.
Thanks, Mikhail
--
Mikhail Skorzhinskiy
mskorzhinskiy@eml.cc
On Sun, Dec 26, 2021, at 16:44, Ihor Radchenko wrote:
> Mikhail Skorzhinskii <mskorzhinskiy@eml.cc> writes:
>
> Thanks for the patch! The addition looks reasonable to me.
>
>> + (title (when (and file-or-title (string= file-or-title
>> 'title))
>> ...
>> + (and file-or-title bfn (concat (if (and (string= file-or-
>> title 'title) title)
>
> (string= file-or-title 'title) will match FILE-OR-TITLE values "title"
> and 'title. I am not sure if it is what you intended to achieve.
> Probably, a simple (eq file-or-title 'title) would be sufficient.
>
> Best,
> Ihor