From: Alexandr Vityazev Date: Tue, 18 May 2021 13:36:25 +0000 (+0200) Subject: Fix the length= shortdoc example X-Git-Tag: emacs-28.0.90~2430 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64;p=emacs.git Fix the length= shortdoc example * lisp/emacs-lisp/shortdoc.el (list): Fix the length= example (bug#48495). Copyright-paperwork-exempt: yes --- diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 9b31d687035..0320e171825 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -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))))