From d8881dbc1333a68644b5d9808a7471ba9ab25194 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Tue, 10 Oct 2023 10:14:48 -0400 Subject: rename VIDEO_SLUG to FILE_PREFIX --- emacsconf-pad.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'emacsconf-pad.el') 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 () -- cgit v1.2.3