aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2025-02-20 02:36:41 +0100
committerStefan Kangas2025-02-20 02:36:41 +0100
commit5e9c027e2048547f7d368da4f7da4331bc7afd73 (patch)
treed24ab96902bc7a6c6f11c8d76c463405c5fec8a7
parentf255b8854a352bf2c29ec4f83e5fae998ec38a1e (diff)
downloademacs-5e9c027e2048547f7d368da4f7da4331bc7afd73.tar.gz
emacs-5e9c027e2048547f7d368da4f7da4331bc7afd73.zip
; * Update 'ldefs-boot.el' (do not merge)
-rw-r--r--lisp/ldefs-boot.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index 6416f63afbf..e445c1700b4 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -19016,7 +19016,7 @@ Selections are:
19016 19016
19017\\`0'..\\`9' Replace the word with a digit offered in the *Choices* buffer. 19017\\`0'..\\`9' Replace the word with a digit offered in the *Choices* buffer.
19018\\`SPC' Accept word this time. 19018\\`SPC' Accept word this time.
19019\\`i' Accept word and insert into private dictionary. 19019\\`i' Accept word and insert into personal dictionary.
19020\\`a' Accept word for this session. 19020\\`a' Accept word for this session.
19021\\`A' Accept word and place in `buffer-local dictionary'. 19021\\`A' Accept word and place in `buffer-local dictionary'.
19022\\`r' Replace word with typed-in value. Rechecked. 19022\\`r' Replace word with typed-in value. Rechecked.
@@ -19731,6 +19731,12 @@ the variables of the outer one. You can, however, access alists
19731inside the original alist by using dots inside the symbol, as 19731inside the original alist by using dots inside the symbol, as
19732displayed in the example above. 19732displayed in the example above.
19733 19733
19734To refer to a non-`let-alist' variable starting with a dot in BODY, use
19735two dots instead of one. For example, in the following form `..foo'
19736refers to the variable `.foo' bound outside of the `let-alist':
19737
19738 (let ((.foo 42)) (let-alist \\='((foo . nil)) ..foo))
19739
19734Note that there is no way to differentiate the case where a key 19740Note that there is no way to differentiate the case where a key
19735is missing from when it is present, but its value is nil. Thus, 19741is missing from when it is present, but its value is nil. Thus,
19736the following form evaluates to nil: 19742the following form evaluates to nil: