diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-09-29 08:41:42 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-09-29 08:41:42 +0300 |
commit | d558f38fe5c6748f6a08c7635fa58ce14cb667b1 (patch) | |
tree | 77d8eb66285282313fdcee8b945fe5d62164e06e /lisp/emacs-lisp | |
parent | 71feee79309b66a7baf7847472ccebf019d2a801 (diff) | |
download | emacs-d558f38fe5c6748f6a08c7635fa58ce14cb667b1.tar.gz emacs-d558f38fe5c6748f6a08c7635fa58ce14cb667b1.tar.bz2 emacs-d558f38fe5c6748f6a08c7635fa58ce14cb667b1.zip |
; * lisp/emacs-lisp/let-alist.el (let-alist): Fix quoting in doc string.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/let-alist.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/let-alist.el b/lisp/emacs-lisp/let-alist.el index 1f08cc41a5c..6fb425c5615 100644 --- a/lisp/emacs-lisp/let-alist.el +++ b/lisp/emacs-lisp/let-alist.el @@ -145,7 +145,7 @@ Note that there is no way to differentiate the case where a key is missing from when it is present, but its value is nil. Thus, the following form evaluates to nil: - (let-alist '((some-key . nil)) + (let-alist \\='((some-key . nil)) .some-key)" (declare (indent 1) (debug t)) (let ((var (make-symbol "alist"))) |