emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 2c90aa9: Fix the length= shortdoc example


From: Lars Ingebrigtsen
Subject: master 2c90aa9: Fix the length= shortdoc example
Date: Tue, 18 May 2021 09:36:54 -0400 (EDT)

branch: master
commit 2c90aa93a9d4d53c090dbb8a33501fa4e8cefc64
Author: Alexandr Vityazev <avityazev@posteo.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix the length= shortdoc example
    
    * lisp/emacs-lisp/shortdoc.el (list): Fix the length= example
    (bug#48495).
    
    Copyright-paperwork-exempt: yes
---
 lisp/emacs-lisp/shortdoc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 9b31d68..0320e17 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))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]