[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] org-agenda.el: customise outline path in echo area
From: |
Ihor Radchenko |
Subject: |
Re: [PATCH] org-agenda.el: customise outline path in echo area |
Date: |
Sun, 26 Dec 2021 21:44:13 +0800 |
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