From: miles christopher <numbchild@gmail.com>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: "help-gnu-emacs@gnu.org" <help-gnu-emacs@gnu.org>
Subject: Re: How to store list of variable values into another dynamically created variables
Date: Wed, 6 Jan 2021 02:47:07 +0000 [thread overview]
Message-ID: <VI1PR1001MB107046CEA31CED2CB0414063A3D00@VI1PR1001MB1070.EURPRD10.PROD.OUTLOOK.COM> (raw)
In-Reply-To: <jwvpn2jw58g.fsf-monnier+emacs@gnu.org>
Stefan Monnier <monnier@iro.umontreal.ca> writes:
>> Your save and restore functions are then dead easy:
>>
>> #+begin_src emacs-lisp
>> (defun mu4e-save (l)
>> (mapcar (lambda(x) (set (cdr x) (symbol-value (car x)))) l))
>>
>> (defun mu4e-restore (l)
>> (let ((lrev (mapcar (lambda(x) (cons (cdr x) (car x))) l)))
>> (mu4e-save lrev)))
>
> FWIW, in most of the minor modes where I've needed such a thing, I found
> it more convenient to use a single "save" variable, e.g. something like:
>
> (defvar FOO--saved-vals nil)
>
> (define-minor-mode FOO-mode
> "blabla FOO blabla"
> ;; Revert to original values.
> (dolist (x (prog1 FOO--saved-vals (setq FOO--saved-vals nil)))
> (if (consp x)
> (set (car x) (cdr x))
> (mkunbound x)))
> ;; Set minor mode's values.
> (when FOO-mode
> (setq FOO--saved-vals
> (mapcar (lambda (v)
> (if (boundp v) (cons v (symbol-value v)) v))
> '(mu4e-headers-seen-mark
> ...
> mu4e-headers-duplicate-prefix)))
> ..etc..))
>
>
> -- Stefan
Maybe can provide a simple package for this purpose? And include it in Emacs /
GNU ELPA will be available for some package developers. WDYT?
Indeed, because some minor modes are based on another mode. As a minor mode,
should provide a mechanism to store and restore original settings. Of course,
not provided is also acceptable.
--
[ stardiviner ]
I try to make every word tell the meaning that I want to express.
Blog: https://stardiviner.github.io/
IRC(freenode): stardiviner, Matrix: stardiviner
GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
next prev parent reply other threads:[~2021-01-06 2:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-04 14:51 How to store list of variable values into another dynamically created variables miles christopher
2021-01-05 18:24 ` Leo Butler
2021-01-05 19:38 ` Stefan Monnier
2021-01-06 2:47 ` miles christopher [this message]
2021-01-06 3:01 ` Stefan Monnier
2021-01-06 2:44 ` miles christopher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=VI1PR1001MB107046CEA31CED2CB0414063A3D00@VI1PR1001MB1070.EURPRD10.PROD.OUTLOOK.COM \
--to=numbchild@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).