diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-11-30 15:22:49 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-11-30 15:22:49 -0500 |
commit | b3b0cfa1f290e73655a41aa643da403e8b54fff5 (patch) | |
tree | a1fabb113c9baf9ae004e3ea5aa5d072a8b37bb7 | |
parent | 707d1f09bf4482ed967570222c7a13e20c2cc6ea (diff) | |
download | emacsconf-el-b3b0cfa1f290e73655a41aa643da403e8b54fff5.tar.xz emacsconf-el-b3b0cfa1f290e73655a41aa643da403e8b54fff5.zip |
hyperlists
-rw-r--r-- | emacsconf-pad.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emacsconf-pad.el b/emacsconf-pad.el index c40cf6c..5d1ca20 100644 --- a/emacsconf-pad.el +++ b/emacsconf-pad.el @@ -589,13 +589,17 @@ ${bbb-checklist}</li>") ) ))) -(defun emacsconf-pad-prepopulate-hyperlists () +(defun emacsconf-pad-prepopulate-shift-hyperlists () (interactive) (let ((info (emacsconf-prepare-for-display (emacsconf-get-talk-info)))) (mapc (lambda (shift) (emacsconf-pad-prepopulate-shift-hyperlist shift info)) emacsconf-shifts))) +(defun emacsconf-pad-prepopulate-hyperlists () + (interactive) + (emacsconf-pad-prepopulate-shift-hyperlists) + (emacsconf-pad-prepopulate-host-hyperlists)) (defun emacsconf-pad-expand-intro (talk) (cond ((null (plist-get talk :speakers)) |