projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbd3a3b
)
Fix the length= shortdoc example
author
Alexandr Vityazev
<avityazev@posteo.org>
Tue, 18 May 2021 13:36:25 +0000
(15:36 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Tue, 18 May 2021 13:36:25 +0000
(15:36 +0200)
* lisp/emacs-lisp/shortdoc.el (list): Fix the length= example
(bug#48495).
Copyright-paperwork-exempt: yes
lisp/emacs-lisp/shortdoc.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/shortdoc.el
b/lisp/emacs-lisp/shortdoc.el
index 9b31d687035a7e608a3e23876c5677873a77eedd..0320e1718259ffd4d0d49e3c04352e08b4ed44a1 100644
(file)
--- 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))))