diff options
| author | Sacha Chua <sacha@sachachua.com> | 2022-10-02 07:54:41 -0400 | 
|---|---|---|
| committer | Sacha Chua <sacha@sachachua.com> | 2022-10-02 07:54:41 -0400 | 
| commit | 74b05355bfb01ada45e986f4927ec01d19d066ce (patch) | |
| tree | abb955ca22c3f161db709e97b86f14369c7206a2 | |
| parent | 3981af462451dd7526dacfb506e77c573eaf9503 (diff) | |
| download | emacsconf-el-74b05355bfb01ada45e986f4927ec01d19d066ce.tar.xz emacsconf-el-74b05355bfb01ada45e986f4927ec01d19d066ce.zip  | |
Fix condition for public e-mail
| -rw-r--r-- | emacsconf-publish.el | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 644e1b5..c1b3b55 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -347,7 +347,8 @@ resources."    (format "Questions or comments? Please e-mail %s"            (emacsconf-format-public-email talk                                           (or -                                          (and (string= (plist-get talk :public-email) "t")) (plist-get talk :email) +                                          (and (string= (plist-get talk :public-email) "t") +                                               (plist-get talk :email))                                            (plist-get talk :public-email)                                            "emacsconf-org-private@gnu.org"))))  | 
