From 7d2ae4f2b3040c2bfdb74f3a7e69a55a8eb3e484 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 2 Oct 2022 07:48:51 -0400 Subject: Fix public-email handling --- emacsconf-publish.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/emacsconf-publish.el b/emacsconf-publish.el index f5dac7d..644e1b5 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -345,7 +345,11 @@ resources." (defun emacsconf-format-email-questions-and-comments (talk) (format "Questions or comments? Please e-mail %s" - (emacsconf-format-public-email talk (or (plist-get talk :public-email) "emacsconf-org-private@gnu.org")))) + (emacsconf-format-public-email talk + (or + (and (string= (plist-get talk :public-email) "t")) (plist-get talk :email) + (plist-get talk :public-email) + "emacsconf-org-private@gnu.org")))) (defun emacsconf-generate-before-page (talk) "Info included before the abstract." -- cgit v1.2.3