diff options
author | Jake Coble | 2025-06-18 08:14:29 -0400 |
---|---|---|
committer | Arun Isaac | 2025-06-18 22:03:50 +0100 |
commit | f055e8572b2e4d7a700392b8a71bacbfdc8e442a (patch) | |
tree | 5d15a0b39f4b839c4d95d7f0cb28e5c66ce4af8c /varuga.el | |
parent | ee9242a9b5ee69821c1dd8de258ecfd6ad616802 (diff) | |
download | varuga-f055e8572b2e4d7a700392b8a71bacbfdc8e442a.tar.gz varuga-f055e8572b2e4d7a700392b8a71bacbfdc8e442a.tar.lz varuga-f055e8572b2e4d7a700392b8a71bacbfdc8e442a.zip |
* varuga.el (varuga-invite): Don't ask to save
mml-content-type-parameters without a custom-file.
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
Diffstat (limited to 'varuga.el')
-rw-r--r-- | varuga.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -172,12 +172,13 @@ PARAMS is an alist of ical property parameters and their values." This will add 'method to mml-content-type-parameters, which is required for RSVPs to work.")) (y-or-n-p "Set up RSVP support?"))) - (if (let ((help-form "\ + (if (and (custom-file t) + (let ((help-form "\ This will save the value of mml-content-type-parameters in your `custom-file', so future sessions will support RSVP without prompting you.")) - (y-or-n-p "Support RSVP in future sessions?")) - (customize-push-and-save 'mml-content-type-parameters '(method)) + (y-or-n-p "Support RSVP in future sessions?"))) + (customize-save-variable 'mml-content-type-parameters '(method)) (add-to-list 'mml-content-type-parameters 'method)) (setq varuga--mml-content-type-confirmed t))) |