diff options
| author | Stefan Kangas | 2025-02-20 02:36:41 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2025-02-20 02:36:41 +0100 |
| commit | 5e9c027e2048547f7d368da4f7da4331bc7afd73 (patch) | |
| tree | d24ab96902bc7a6c6f11c8d76c463405c5fec8a7 | |
| parent | f255b8854a352bf2c29ec4f83e5fae998ec38a1e (diff) | |
| download | emacs-5e9c027e2048547f7d368da4f7da4331bc7afd73.tar.gz emacs-5e9c027e2048547f7d368da4f7da4331bc7afd73.zip | |
; * Update 'ldefs-boot.el' (do not merge)
| -rw-r--r-- | lisp/ldefs-boot.el | 8 |
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 | |||
| 19731 | inside the original alist by using dots inside the symbol, as | 19731 | inside the original alist by using dots inside the symbol, as |
| 19732 | displayed in the example above. | 19732 | displayed in the example above. |
| 19733 | 19733 | ||
| 19734 | To refer to a non-`let-alist' variable starting with a dot in BODY, use | ||
| 19735 | two dots instead of one. For example, in the following form `..foo' | ||
| 19736 | refers to the variable `.foo' bound outside of the `let-alist': | ||
| 19737 | |||
| 19738 | (let ((.foo 42)) (let-alist \\='((foo . nil)) ..foo)) | ||
| 19739 | |||
| 19734 | Note that there is no way to differentiate the case where a key | 19740 | Note that there is no way to differentiate the case where a key |
| 19735 | is missing from when it is present, but its value is nil. Thus, | 19741 | is missing from when it is present, but its value is nil. Thus, |
| 19736 | the following form evaluates to nil: | 19742 | the following form evaluates to nil: |