Hello all,

I'm playing with block agendas and I'm wondering how to set a specific buffer
name.

In non-block agendas, I can set the buffer name like this:
(setq org-agenda-custom-commands (append
  '(
     ("p" "Simple list of active projects" tags-todo "PRIORITY<\"C\"+project-inactive/-cancelled-done"
       ((org-agenda-prefix-format " %?-12t% s")
        (org-agenda-buffer-name "Top Level Active Projects")
        (org-agenda-sorting-strategy (quote (priority-down)))))

But I can't find where to specify org-agenda-buffer-name in a custom block agenda - for example, 
in the docs:
https://orgmode.org/manual/Block-agenda.html

Where would I add the org-agenda-buffer-name?

Thanks,
--Nate