diff options
| author | Sacha Chua <sacha@sachachua.com> | 2023-11-30 20:38:12 -0500 | 
|---|---|---|
| committer | Sacha Chua <sacha@sachachua.com> | 2023-11-30 20:38:12 -0500 | 
| commit | c802ad87f6fcf95f0769d5a6b66537c1088e6eb9 (patch) | |
| tree | d9edd6ec7a1d3717baeb9ed6ca0af9e74a72a044 | |
| parent | 6d35ab2ac27a552d276c82910e92cc35f41a7e33 (diff) | |
| download | emacsconf-el-c802ad87f6fcf95f0769d5a6b66537c1088e6eb9.tar.xz emacsconf-el-c802ad87f6fcf95f0769d5a6b66537c1088e6eb9.zip  | |
Remove unneeded function
| -rw-r--r-- | emacsconf-publish.el | 15 | 
1 files changed, 0 insertions, 15 deletions
diff --git a/emacsconf-publish.el b/emacsconf-publish.el index 2a02672..5deb29a 100644 --- a/emacsconf-publish.el +++ b/emacsconf-publish.el @@ -856,21 +856,6 @@ Back to the [[talks]]  \n"              (emacsconf-publish-before-page o info))            info))) -(defun emacsconf-publish-talks-page (&optional emacsconf-info) -	"Generate a list of talks." -  (interactive) -  (let ((info (or emacsconf-info -									(sort -									 (seq-filter #'emacsconf-publish-talk-p -															 (or emacsconf-schedule-draft (emacsconf-get-talk-info))) -									 #'emacsconf-sort-by-track-then-schedule))) -				(range (format "<%s %s-%s>" -											 emacsconf-date -											 (plist-get (car emacsconf-tracks) :start) -											 (plist-get (car emacsconf-tracks) :end)))) -    (with-temp-file (expand-file-name "talk-details.md" (expand-file-name emacsconf-year emacsconf-directory)) -)) -  (defun emacsconf-generate-main-schedule-with-tracks (&optional info)    (interactive (list nil))    (setq info (or info (emacsconf-publish-prepare-for-display info)))  | 
