diff options
author | Ted Zlatanov <tzz@lifelogs.com> | 2020-11-08 14:59:58 +0000 |
---|---|---|
committer | Ted Zlatanov <tzz@lifelogs.com> | 2020-11-29 12:09:48 +0000 |
commit | 5ceb51ae198cca77cdf911feee81924d800bdd75 (patch) | |
tree | 1e08f175b9a32518462e1fc9f248010464f8813a /lisp/use-package | |
parent | 3e24a7363b2966776c8e5145acf3d918ae1f5c6e (diff) | |
download | emacs-5ceb51ae198cca77cdf911feee81924d800bdd75.tar.gz emacs-5ceb51ae198cca77cdf911feee81924d800bdd75.tar.bz2 emacs-5ceb51ae198cca77cdf911feee81924d800bdd75.zip |
set property theme-value to avoid saving variable
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package-core.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index be43c65cd4f..933e94aa2bd 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -1394,7 +1394,8 @@ no keyword implies `:all'." (comment (nth 2 def))) (unless (and comment (stringp comment)) (setq comment (format "Customized with use-package %s" name))) - `(customize-set-variable (quote ,variable) ,value ,comment))) + `(customize-set-variable (quote ,variable) ,value ,comment) + `(put ',variable 'theme-value '((use-package-synthetic-theme ignore-just-for-saving))))) args) (use-package-process-keywords name rest state))) |