diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-14 20:30:01 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-14 20:30:01 -0400 |
commit | 4d75bcf6ad15cac37e548048d3a00a4920cdf8a8 (patch) | |
tree | d6f758f6acf94146c192f36c3c1c15631dbaec90 | |
parent | 225324927cb62588f1e0a542e905556a5a139e1c (diff) | |
download | emacsconf-el-4d75bcf6ad15cac37e548048d3a00a4920cdf8a8.tar.xz emacsconf-el-4d75bcf6ad15cac37e548048d3a00a4920cdf8a8.zip |
Fix emacsconf-format-main-schedule
Diffstat (limited to '')
-rw-r--r-- | emacsconf-publish.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 3a33a2f..899145d 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -681,7 +681,7 @@ Entries are sorted chronologically, with different tracks interleaved." (defun emacsconf-format-main-schedule (info) (let* ((cancelled (seq-filter (lambda (o) (string= (plist-get o :status) "CANCELLED")) info))) (concat - (mapconcat #'emacsconf-publish-sched-directive o (emacsconf-active-talks info) "\n") + (mapconcat #'emacsconf-publish-sched-directive (emacsconf-active-talks info) "\n") "\n" (if (> (length cancelled) 0) (format "<div class=\"cancelled\">Cancelled:<ul>%s</ul></div>" |