From 348f43797e3a126471681e1f5be00bc3fd34914d Mon Sep 17 00:00:00 2001 From: Ignacio Date: Tue, 12 Apr 2022 10:48:32 +0200 Subject: [PATCH] updated documentation regarding default toplevel values of variables --- lisp/custom.el | 26 +++++++++++++------------- src/data.c | 16 +++++++++++----- 2 files changed, 24 insertions(+), 18 deletions(-) diff --git a/lisp/custom.el b/lisp/custom.el index 76c14831ca..e23ca7915a 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -68,7 +68,7 @@ custom-initialize-default (defun custom-initialize-set (symbol exp) "Initialize SYMBOL based on EXP. If the symbol doesn't have a default binding already, -then set it using its `:set' function (or `set-default' if it has none). +then set it using its `:set' function (or `set-default-toplevel-value' if it has none). The value is either the value in the symbol's `saved-value' property, if any, or the value of EXP." (condition-case nil @@ -81,7 +81,7 @@ custom-initialize-set (defun custom-initialize-reset (symbol exp) "Initialize SYMBOL based on EXP. -Set the symbol, using its `:set' function (or `set-default' if it has none). +Set the symbol, using its `:set' function (or `set-default-toplevel-value' if it has none). The value is either the symbol's current value (as obtained using the `:get' function), if any, or the value in the symbol's `saved-value' property if any, @@ -100,7 +100,7 @@ custom-initialize-changed "Initialize SYMBOL with EXP. Like `custom-initialize-reset', but only use the `:set' function if not using the standard setting. -For the standard setting, use `set-default'." +For the standard setting, use `set-default-toplevel-value'." (condition-case nil (let ((def (default-toplevel-value symbol))) (funcall (or (get symbol 'custom-set) #'set-default-toplevel-value) @@ -114,7 +114,7 @@ custom-initialize-changed symbol (eval (car (get symbol 'saved-value))))) (t - (set-default symbol (eval exp))))))) + (set-default-toplevel-value symbol (eval exp))))))) (defvar custom-delayed-init-variables nil "List of variables whose initialization is pending until startup. @@ -262,11 +262,11 @@ defcustom when using the Customize user interface. It takes two arguments, the symbol to set and the value to give it. The function should not modify its value argument destructively. The default choice - of function is `set-default'. + of function is `set-default-toplevel-value'. :get VALUE should be a function to extract the value of symbol. The function takes one argument, a symbol, and should return the current value for that symbol. The default choice of function - is `default-value'. + is `default-toplevel-value'. :require VALUE should be a feature symbol. If you save a value for this option, then when your init file loads the value, @@ -717,7 +717,7 @@ custom-set-default (if custom-local-buffer (with-current-buffer custom-local-buffer (set variable value)) - (set-default variable value))) + (set-default-toplevel-value variable value))) (defun custom-set-minor-mode (variable value) ":set function for minor mode variables. @@ -752,7 +752,7 @@ customize-mark-to-save Return non-nil if the `saved-value' property actually changed." (custom-load-symbol symbol) - (let* ((get (or (get symbol 'custom-get) #'default-value)) + (let* ((get (or (get symbol 'custom-get) #'default-toplevel-value)) (value (funcall get symbol)) (saved (get symbol 'saved-value)) (standard (get symbol 'standard-value)) @@ -779,7 +779,7 @@ customize-mark-as-set Return non-nil if the `customized-value' property actually changed." (custom-load-symbol symbol) - (let* ((get (or (get symbol 'custom-get) #'default-value)) + (let* ((get (or (get symbol 'custom-get) #'default-toplevel-value)) (value (funcall get symbol)) (customized (get symbol 'customized-value)) (old (or (get symbol 'saved-value) (get symbol 'standard-value)))) @@ -1054,12 +1054,12 @@ custom-theme-set-variables ;; Rogue variable, set it now. (put symbol 'force-value t) (funcall set symbol (eval value))) - ((default-boundp symbol) + ((default-boundp symbol) ; condition-case + default-toplevel-value? ;; Something already set this, overwrite it. (funcall set symbol (eval value)))) (error (message "Error setting %s: %s" symbol data))) - (and (or now (default-boundp symbol)) + (and (or now (default-boundp symbol)) ; condition-case + default-toplevel-value? (put symbol 'variable-comment comment))))))) (defvar custom--sort-vars-table) @@ -1608,8 +1608,8 @@ custom-theme-recalc-variable (setq valspec (get variable 'standard-value))) (if (and valspec (or (get variable 'force-value) - (default-boundp variable))) - (funcall (or (get variable 'custom-set) #'set-default) variable + (default-boundp variable))) ; (condition-case ... default-toplevel-value ...) ? + (funcall (or (get variable 'custom-set) #'set-default) variable ; set-default-toplevel-value? (eval (car valspec)))))) (defun custom-theme-recalc-face (face) diff --git a/src/data.c b/src/data.c index f06b561dcc..b73a997341 100644 --- a/src/data.c +++ b/src/data.c @@ -1927,9 +1927,10 @@ default_value (Lisp_Object symbol) DEFUN ("default-boundp", Fdefault_boundp, Sdefault_boundp, 1, 1, 0, doc: /* Return t if SYMBOL has a non-void default value. -A variable may have a buffer-local or a `let'-bound local value. This -function says whether the variable has a non-void value outside of the -current context. Also see `default-value'. */) +This is the value that is seen in buffers that do not have their own +values for this variable. Let bindings may shadow this default value. +To take them into account, use `default-toplevel-value' together with +`condition-case' instead. */) (Lisp_Object symbol) { register Lisp_Object value; @@ -1942,7 +1943,9 @@ DEFUN ("default-value", Fdefault_value, Sdefault_value, 1, 1, 0, doc: /* Return SYMBOL's default value. This is the value that is seen in buffers that do not have their own values for this variable. The default value is meaningful for variables with -local bindings in certain buffers. */) +local bindings in certain buffers. Let bindings may shadow this +default value. To take them into account, use +`default-toplevel-value' instead. */) (Lisp_Object symbol) { Lisp_Object value = default_value (symbol); @@ -2045,7 +2048,10 @@ set_default_internal (Lisp_Object symbol, Lisp_Object value, DEFUN ("set-default", Fset_default, Sset_default, 2, 2, 0, doc: /* Set SYMBOL's default value to VALUE. SYMBOL and VALUE are evaluated. The default value is seen in buffers that do not have their own values -for this variable. */) +for this variable. This function may no behave as expected inside let +bindings of SYMBOL. To take them into account, use +`set-default-toplevel-value' instead. */) + (Lisp_Object symbol, Lisp_Object value) { set_default_internal (symbol, value, SET_INTERNAL_SET); -- 2.25.1