1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix the length= shortdoc example

* lisp/emacs-lisp/shortdoc.el (list): Fix the length= example
(bug#48495).

Copyright-paperwork-exempt: yes
This commit is contained in:
Alexandr Vityazev 2021-05-18 15:36:25 +02:00 committed by Lars Ingebrigtsen
parent cbd3a3b87d
commit 2c90aa93a9

View file

@ -625,7 +625,7 @@ There can be any number of :example/:result elements."
(length>
:eval (length> '(a b c) 1))
(length=
:eval (length> '(a b c) 3))
:eval (length= '(a b c) 3))
(safe-length
:eval (safe-length '(a b c))))