summaryrefslogtreecommitdiffstats
path: root/emacsconf-pad.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacsconf-pad.el')
-rw-r--r--emacsconf-pad.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacsconf-pad.el b/emacsconf-pad.el
index 243f973..152b636 100644
--- a/emacsconf-pad.el
+++ b/emacsconf-pad.el
@@ -794,14 +794,14 @@ This page is for easy reference and recording. Please make sure any changes here
(defun emacsconf-pad-backup-talk (talk)
(interactive (list (emacsconf-complete-talk-info)))
- (with-temp-file (expand-file-name (concat (plist-get talk :video-slug) "--pad.html")
+ (with-temp-file (expand-file-name (concat (plist-get talk :file-prefix) "--pad.html")
emacsconf-cache-dir)
(insert
(emacsconf-pad-get-html (emacsconf-pad-id talk))))
(call-process "pandoc" nil nil nil "-o"
- (expand-file-name (concat (plist-get talk :video-slug) "--pad.md")
+ (expand-file-name (concat (plist-get talk :file-prefix) "--pad.md")
emacsconf-cache-dir)
- (expand-file-name (concat (plist-get talk :video-slug) "--pad.html")
+ (expand-file-name (concat (plist-get talk :file-prefix) "--pad.html")
emacsconf-cache-dir)))
(defun emacsconf-pad-backup-talks ()