Glad to hear that. Should I resubmit the patch in this thread? I agree with your change.
Thanks, Mikhail -- Mikhail Skorzhinskiy mskorzhins...@eml.cc On Sun, Dec 26, 2021, at 16:44, Ihor Radchenko wrote: > Mikhail Skorzhinskii <mskorzhins...@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