aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorAlexandr Vityazev2021-05-18 15:36:25 +0200
committerLars Ingebrigtsen2021-05-18 15:36:25 +0200
commit2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64 (patch)
tree49ca99f9f49e1fc6a685448d465142bcfea9837f /lisp
parentcbd3a3b87d590b42c0e37f376c35200712bf5e1d (diff)
downloademacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.tar.gz
emacs-2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64.zip
Fix the length= shortdoc example
* lisp/emacs-lisp/shortdoc.el (list): Fix the length= example (bug#48495). Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/shortdoc.el2
1 files changed, 1 insertions, 1 deletions
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."
625 (length> 625 (length>
626 :eval (length> '(a b c) 1)) 626 :eval (length> '(a b c) 1))
627 (length= 627 (length=
628 :eval (length> '(a b c) 3)) 628 :eval (length= '(a b c) 3))
629 (safe-length 629 (safe-length
630 :eval (safe-length '(a b c)))) 630 :eval (safe-length '(a b c))))
631 631