[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: custom-set-variables considered harmful
From: |
Stefan Monnier |
Subject: |
Re: custom-set-variables considered harmful |
Date: |
Mon, 13 Nov 2017 11:26:29 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) |
> When writing customizations, instead of writing
>
> (custom-set-variables
> ;; Big ugly warning which doesn't help enough.
> '(VAR1 VAL1)
> '(VAR2 VAL2 nil '(REQUEST) COMMENT)
> '(VAR3 VAL3)
> ...)
>
> we write
>
> (autogenerated-custom-settings
> ;; Big warning, still, but less important.
> (setq VAR1 VAL1)
> (require 'REQUEST)
> (customize-set-variable VAR2 VAL2 COMMENT)
> (customize-set-variable VAR3 VAL3)
> ...)
Here's a sample patch to do that. Comments?
Stefan
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index edf3545cad..0f9b38974d 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -4374,6 +4382,16 @@ custom-file
if only the first line of the docstring is shown."))
:group 'customize)
+(defcustom custom-mimic-plain-elisp t
+ "If non-nil, save user settings with the new format.
+This new format tries to mimick the code that would be written by hand
+in plain Elisp. But it relies on `custom-autogenerated-user-settings' which
+is a new macro in Emacs-27, so settings saved with this will either
+require a recent enough Emacs, or some ad-hoc hack such
+as (defalias 'custom-autogenerated-user-settings #'ignore)."
+ :type 'boolean
+ :group 'customize)
+
(defun custom-file (&optional no-error)
"Return the file name for saving customizations."
(if (or (null user-init-file)
@@ -4505,6 +4523,7 @@ custom-save-variables
"Save all customized variables in `custom-file'."
(save-excursion
(custom-save-delete 'custom-set-variables)
+ (custom-save-delete 'custom-autogenerated-user-settings)
(let ((standard-output (current-buffer))
(saved-list (make-list 1 0))
sort-fold-case)
@@ -4519,8 +4538,12 @@ custom-save-variables
(setq saved-list (sort (cdr saved-list) 'string<))
(unless (bolp)
(princ "\n"))
- (princ "(custom-set-variables
- ;; custom-set-variables was added by Custom.
+ (princ (if custom-mimic-plain-elisp
+ "(custom-autogenerated-user-settings
+ ;; This custom-autogenerated-user-settings was added by Custom."
+ "(custom-set-variables
+ ;; This custom-set-variables was added by Custom."))
+ (princ "
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.\n")
@@ -4555,28 +4578,43 @@ custom-save-variables
;; with the customize facility.
(unless (bolp)
(princ "\n"))
- (princ " '(")
- (prin1 symbol)
- (princ " ")
- (let ((val (prin1-to-string (car value))))
- (if (< (length val) 60)
- (insert val)
- (newline-and-indent)
- (let ((beginning-of-val (point)))
- (insert val)
- (save-excursion
- (goto-char beginning-of-val)
- (indent-pp-sexp 1)))))
- (when (or now requests comment)
+ (if custom-mimic-plain-elisp
+ ;; Do the inverse conversion of
+ ;; custom-autogenerated-user-settings.
+ (let* ((e (cond
+ ((get symbol 'custom-set)
+ `(customize-set-variable ',symbol ,(car value)))
+ ((local-variable-if-set-p
+ symbol (get-buffer-create "*scratch*"))
+ `(setq-default ,symbol ,(car value)))
+ (t `(setq ,symbol ,(car value))))))
+ (dolist (e (nconc (mapcar (lambda (r) `(require ',r))
requests)
+ (if comment (list comment e) (list e))))
+ (princ " ")
+ (pp e)
+ (unless (bolp) (princ "\n"))))
+ (princ " '(")
+ (prin1 symbol)
(princ " ")
- (prin1 now)
- (when (or requests comment)
- (princ " ")
- (prin1 requests)
- (when comment
+ (let ((val (prin1-to-string (car value))))
+ (if (< (length val) 60)
+ (insert val)
+ (newline-and-indent)
+ (let ((beginning-of-val (point)))
+ (insert val)
+ (save-excursion
+ (goto-char beginning-of-val)
+ (indent-pp-sexp 1)))))
+ (when (or now requests comment)
+ (princ " ")
+ (prin1 now)
+ (when (or requests comment)
(princ " ")
- (prin1 comment))))
- (princ ")"))))
+ (prin1 requests)
+ (when comment
+ (princ " ")
+ (prin1 comment))))
+ (princ ")")))))
(if (bolp)
(princ " "))
(princ ")")
@@ -4586,7 +4624,7 @@ custom-save-variables
(defun custom-save-faces ()
"Save all customized faces in `custom-file'."
(save-excursion
- (custom-save-delete 'custom-reset-faces)
+ (custom-save-delete 'custom-reset-faces) ;FIXME: never written!?
(custom-save-delete 'custom-set-faces)
(let ((standard-output (current-buffer))
(saved-list (make-list 1 0))
@@ -4738,9 +4776,9 @@ customize-menu-create
(defvar tool-bar-map)
-;;; `custom-tool-bar-map' used to be set up here. This will fail to
-;;; DTRT when `display-graphic-p' returns nil during compilation. Hence
-;;; we set this up lazily in `Custom-mode'.
+;; `custom-tool-bar-map' used to be set up here. This will fail to
+;; DTRT when `display-graphic-p' returns nil during compilation. Hence
+;; we set this up lazily in `Custom-mode'.
(defvar custom-tool-bar-map nil
"Keymap for toolbar in Custom mode.")
diff --git a/lisp/custom.el b/lisp/custom.el
index 352fc6bd53..f541b51420 100644
--- a/lisp/custom.el
+++ b/lisp/custom.el
@@ -1,4 +1,4 @@
-;;; custom.el --- tools for declaring and initializing options
+;;; custom.el --- tools for declaring and initializing options -*-
lexical-binding:t -*-
;;
;; Copyright (C) 1996-1997, 1999, 2001-2017 Free Software Foundation,
;; Inc.
@@ -926,6 +933,35 @@ custom-fix-face-spec
(nreverse result))
spec)))
+(defmacro custom-autogenerated-user-settings (&rest body)
+ "Install user customizations of variable values specified in ARGS.
+Expect the format output by `custom-save-variables'."
+ (let* ((settings '())
+ (requests '())
+ (comment nil)
+ (mk (lambda (x e)
+ (push
+ `'(,x ,e
+ . ,(when (or comment requests)
+ `(nil ,(prog1 (nreverse requests)
+ (setq requests '()))
+ . ,(when comment
+ (prog1 (list comment)
+ (setq comment nil))))))
+ settings))))
+ (dolist (e body)
+ (pcase e
+ (`(,(or 'setq 'setq-default) ,x ,e) (funcall mk x e))
+ (`(require ',p) (push p requests))
+ (`(customize-set-variable ',x ,e) (funcall mk x e))
+ (`(,x ,(and v (or 1 -1))) (funcall mk x (> v 0)))
+ ((pred stringp)
+ (and comment (message "Dropping extra comment: %S" comment))
+ (setq comment e))
+ (_
+ (message "Unrecognized expression in
custom-autogenerated-user-settings: %S" e))))
+ `(custom-set-variables ,@(nreverse settings))))
+
(defun custom-set-variables (&rest args)
"Install user customizations of variable values specified in ARGS.
These settings are registered as theme `user'.
@@ -940,7 +976,7 @@ custom-set-variables
REQUEST is a list of features we must require in order to
handle SYMBOL properly.
COMMENT is a comment string about SYMBOL."
- (apply 'custom-theme-set-variables 'user args))
+ (apply #'custom-theme-set-variables 'user args))
(defun custom-theme-set-variables (theme &rest args)
"Initialize variables for theme THEME according to settings in ARGS.
@@ -1505,7 +1541,7 @@ custom-reset-variables
(VARIABLE IGNORED)
This means reset VARIABLE. (The argument IGNORED is ignored)."
- (apply 'custom-theme-reset-variables 'user args))
+ (apply #'custom-theme-reset-variables 'user args))
;;; The End.
Re: custom-set-variables considered harmful,
Stefan Monnier <=
- Re: custom-set-variables considered harmful, Elias Mårtenson, 2017/11/24
- Re: custom-set-variables considered harmful, Elias Mårtenson, 2017/11/26
- RE: custom-set-variables considered harmful, Drew Adams, 2017/11/26
- Re: custom-set-variables considered harmful, Philippe Vaucher, 2017/11/28
- Re: custom-set-variables considered harmful, John Wiegley, 2017/11/28
- Re: custom-set-variables considered harmful, Elias Mårtenson, 2017/11/28
- Re: custom-set-variables considered harmful, Stefan Monnier, 2017/11/29