]> git.eshelyaron.com Git - emacs.git/commitdiff
Add let-alist to alist shortdoc group
authorStefan Kangas <stefankangas@gmail.com>
Wed, 2 Aug 2023 19:49:19 +0000 (21:49 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 2 Aug 2023 19:49:19 +0000 (21:49 +0200)
* lisp/emacs-lisp/shortdoc.el (alist): Add let-alist.

lisp/emacs-lisp/shortdoc.el

index d1cf63317bfaf6eaed4b4e9d90ee31b9ef7d8f3a..dbc061d8a7085b649ac58f11279ac864353466ad 100644 (file)
@@ -153,14 +153,14 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
    :eval (let* ((old '((foo . bar)))
                 (new (copy-alist old)))
            (eq old new)))
-  ;; FIXME: Outputs "\.rose" for the symbol `.rose'.
-  ;; (let-alist
-  ;;     :eval (let ((colors '((rose . red)
-  ;;                           (lily . white))))
-  ;;             (let-alist colors
-  ;;               (if (eq .rose 'red)
-  ;;                   .lily))))
-  )
+  ;; FIXME: Outputs "\.rose" for the symbol `.rose'.  It would be
+  ;; better if that could be cleaned up.
+  (let-alist
+      :eval (let ((colors '((rose . red)
+                            (lily . white))))
+              (let-alist colors
+                (if (eq .rose 'red)
+                    .lily)))))
 
 (define-short-documentation-group string
   "Making Strings"